Skip to content

Commit

Permalink
Correct flaky test.
Browse files Browse the repository at this point in the history
  • Loading branch information
janiversen committed Jul 20, 2024
1 parent 2ff49ce commit 802cb2b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/transport/test_comm.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ async def test_split_serial_packet(self, client, server, use_port):
)
async def test_serial_poll(self, client, server, use_port):
"""Test connection and data exchange."""
if SerialTransport.force_poll:
client.close()
server.close()
return
Log.debug("test_serial_poll {}", use_port)
assert await server.listen()
SerialTransport.force_poll = True
Expand All @@ -188,6 +192,7 @@ async def test_serial_poll(self, client, server, use_port):
assert not client.recv_buffer
client.close()
server.close()
SerialTransport.force_poll = False

@pytest.mark.parametrize(
("use_comm_type", "use_host"),
Expand Down
4 changes: 4 additions & 0 deletions test/transport/test_serial.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ async def test_create_serial(self):

async def test_force_poll(self):
"""Test external methods."""
if SerialTransport.force_poll:
return
SerialTransport.force_poll = True
transport, protocol = await create_serial_connection(
asyncio.get_running_loop(), mock.Mock, "dummy"
Expand All @@ -94,6 +96,8 @@ async def test_force_poll(self):

async def test_write_force_poll(self):
"""Test write with poll."""
if SerialTransport.force_poll:
return
SerialTransport.force_poll = True
transport, protocol = await create_serial_connection(
asyncio.get_running_loop(), mock.Mock, "dummy"
Expand Down

0 comments on commit 802cb2b

Please sign in to comment.