From 6f99d58df05664c2a89f0293c24060a034813546 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Wed, 28 Aug 2024 15:31:28 -0400 Subject: [PATCH] set the `asyncio_default_fixture_loop_scope` to `fixture` (current default) to avoid change in future behavior --- pytest.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pytest.ini b/pytest.ini index 267fc8c6c..9d80d8374 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,5 +1,7 @@ [pytest] asyncio_mode=strict +# Used for ./tests/pytest/asyncio_prevent.py +asyncio_default_fixture_loop_scope=fixture testpaths=tests/pytest/ ; Note: Browsers are set within `./Makefile` addopts = --strict-markers --durations=6 --durations-min=5.0 --numprocesses auto