From 19f1258d68bfc8111fc809ad8224a12650b96e01 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Mon, 18 Mar 2024 09:24:28 -0400 Subject: [PATCH] remove fixture mark in tests https://github.com/pytest-dev/pytest-twisted/issues/165 --- testing/test_basic.py | 1 - 1 file changed, 1 deletion(-) diff --git a/testing/test_basic.py b/testing/test_basic.py index 29bfd3d..d7489bc 100755 --- a/testing/test_basic.py +++ b/testing/test_basic.py @@ -396,7 +396,6 @@ def test_async_fixture(testdir, cmd_opts): scope="function", params=["fs", "imap", "web"], ) - @pytest.mark.redgreenblue async def foo(request): d1, d2 = defer.Deferred(), defer.Deferred() reactor.callLater(0.01, d1.callback, 1)