From 81e7fac848e6102612a6f066cffcca6a2a03eb13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Mon, 9 Aug 2021 19:26:37 +0200 Subject: [PATCH] Fix flaky tests when CI did not have access to /run/supervisor (#3054) --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 9a58e82b7..a017402ba 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -124,7 +124,7 @@ async def network_manager(dbus) -> NetworkManager: @pytest.fixture -async def coresys(loop, docker, network_manager, aiohttp_client) -> CoreSys: +async def coresys(loop, docker, network_manager, aiohttp_client, run_dir) -> CoreSys: """Create a CoreSys Mock.""" with patch("supervisor.bootstrap.initialize_system"), patch( "supervisor.bootstrap.setup_diagnostics"