Skip to content

Commit

Permalink
Elongate async timeout to stop flapping test from flapping, similar to
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Aug 9, 2023
1 parent 2096ed8 commit 4e67500
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async def websocket_client(self, port):
client = await websocket("ws://127.0.0.1:{}/websocket".format(port))
return client

@pytest.mark.gen_test(run_sync=False)
@pytest.mark.gen_test(run_sync=False, timeout=30)
async def test_tornado_handler_async_manager_thread(self, app, http_client, http_port, sentinel):
table_name = str(random.random())
_table = Table(data)
Expand Down

0 comments on commit 4e67500

Please sign in to comment.