summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChayim I. Kirshen <c@kirshen.com>2023-03-29 14:36:08 +0300
committerChayim I. Kirshen <c@kirshen.com>2023-03-29 14:36:08 +0300
commit68533b89b77c69701653ba476ebe7de67eb108e1 (patch)
treee2e1197a6c4e3fcd3570306d7eda9da400c225c7
parent37ceef7777396051fbc4c344558f5d22b2686164 (diff)
downloadredis-py-68533b89b77c69701653ba476ebe7de67eb108e1.tar.gz
marker
-rw-r--r--tests/test_asyncio/test_cwe_404.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_asyncio/test_cwe_404.py b/tests/test_asyncio/test_cwe_404.py
index 6683440..78b293a 100644
--- a/tests/test_asyncio/test_cwe_404.py
+++ b/tests/test_asyncio/test_cwe_404.py
@@ -44,7 +44,7 @@ class DelayProxy:
loop = self.server.get_loop()
await loop.shutdown_asyncgens()
-
+@pytest.mark.asyncio
@pytest.mark.onlynoncluster
@pytest.mark.parametrize("delay", argvalues=[0.05, 0.5, 1, 2])
async def test_standalone(delay):
@@ -81,6 +81,7 @@ async def test_standalone(delay):
await dp.stop()
+@pytest.mark.asyncio
@pytest.mark.onlynoncluster
@pytest.mark.parametrize("delay", argvalues=[0.05, 0.5, 1, 2])
async def test_standalone_pipeline(delay):
@@ -120,6 +121,7 @@ async def test_standalone_pipeline(delay):
await dp.stop()
+@pytest.mark.asyncio
@pytest.mark.onlycluster
async def test_cluster(request):