fix(tests): drop illegal @pytest.mark.anyio on anyio_backend fixture

Newer pytest raises 'Marks cannot be applied to fixtures' instead of ignoring
it. The async test methods already carry @pytest.mark.anyio, which is what
selects the backend; the fixture must not.
This commit is contained in:
2026-06-17 13:22:35 -04:00
parent d90bc81060
commit 777606681e

View File

@@ -142,7 +142,6 @@ class TestAggregate:
# ── reconcile_once ────────────────────────────────────────────────────────────
@pytest.mark.anyio
@pytest.fixture
def anyio_backend():
return "asyncio"