From 81b081bbc226cf526c79efc8ff45fd6bfd93c8c1 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Wed, 4 Sep 2024 13:59:50 -0700 Subject: [PATCH] pytest: add default fixture option for pytest-asyncio https://github.com/commaai/openpilot/pull/33442 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 945ee631e1..b744389531 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,7 @@ examples = [ [tool.pytest.ini_options] addopts = "--ignore=panda/ -Werror --strict-config --strict-markers --durations=10 -n auto" python_files = "test_*.py" +asyncio_default_fixture_loop_scope = "function" testpaths = [ "opendbc" ]