From 074244ee127e99a246469ae736b3f0e9e98c5daa Mon Sep 17 00:00:00 2001 From: Mikhail Epifanov Date: Mon, 5 Feb 2024 23:35:39 +0100 Subject: [PATCH] add timeout to async test --- cookbook/tests/other/test_connector_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cookbook/tests/other/test_connector_manager.py b/cookbook/tests/other/test_connector_manager.py index b86100824..e6009f6b4 100644 --- a/cookbook/tests/other/test_connector_manager.py +++ b/cookbook/tests/other/test_connector_manager.py @@ -15,6 +15,7 @@ def obj_1(space_1, u1_s1): return e +@pytest.mark.timeout(10) @pytest.mark.asyncio async def test_run_connectors(space_1, u1_s1, obj_1) -> None: connector_mock = Mock(spec=Connector)