From 2f43edfca0e8b76b980b06df13503bf035d99d12 Mon Sep 17 00:00:00 2001 From: Salvatore Mesoraca Date: Fri, 23 Aug 2024 10:36:19 +0200 Subject: [PATCH] Fix issue with pytest-asyncio v0.24 Drop decorator mark.asyncio as it wasn't doing anything here since pytest-asyncio v0.6 and now its unused parameter has been dropped. Signed-off-by: Salvatore Mesoraca --- tests/test_asyncio/test_scripting.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/test_asyncio/test_scripting.py b/tests/test_asyncio/test_scripting.py index 42269ad0..7661b25a 100644 --- a/tests/test_asyncio/test_scripting.py +++ b/tests/test_asyncio/test_scripting.py @@ -28,14 +28,12 @@ async def r(self, create_valkey): yield valkey await valkey.script_flush() - @pytest.mark.asyncio(forbid_global_loop=True) async def test_eval(self, r): await r.flushdb() await r.set("a", 2) # 2 * 3 == 6 assert await r.eval(multiply_script, 1, "a", 3) == 6 - @pytest.mark.asyncio(forbid_global_loop=True) @skip_if_server_version_lt("6.2.0") async def test_script_flush(self, r): await r.set("a", 2) @@ -55,14 +53,12 @@ async def test_script_flush(self, r): await r.script_load(multiply_script) await r.script_flush("NOTREAL") - @pytest.mark.asyncio(forbid_global_loop=True) async def test_evalsha(self, r): await r.set("a", 2) sha = await r.script_load(multiply_script) # 2 * 3 == 6 assert await r.evalsha(sha, 1, "a", 3) == 6 - @pytest.mark.asyncio(forbid_global_loop=True) async def test_evalsha_script_not_loaded(self, r): await r.set("a", 2) sha = await r.script_load(multiply_script) @@ -71,7 +67,6 @@ async def test_evalsha_script_not_loaded(self, r): with pytest.raises(exceptions.NoScriptError): await r.evalsha(sha, 1, "a", 3) - @pytest.mark.asyncio(forbid_global_loop=True) async def test_script_loading(self, r): # get the sha, then clear the cache sha = await r.script_load(multiply_script) @@ -80,7 +75,6 @@ async def test_script_loading(self, r): await r.script_load(multiply_script) assert await r.script_exists(sha) == [True] - @pytest.mark.asyncio(forbid_global_loop=True) async def test_script_object(self, r): await r.script_flush() await r.set("a", 2) @@ -97,7 +91,6 @@ async def test_script_object(self, r): # Test first evalsha block assert await multiply(keys=["a"], args=[3]) == 6 - @pytest.mark.asyncio(forbid_global_loop=True) async def test_script_object_in_pipeline(self, r): await r.script_flush() multiply = r.register_script(multiply_script) @@ -127,7 +120,6 @@ async def test_script_object_in_pipeline(self, r): assert await pipe.execute() == [True, b"2", 6] assert await r.script_exists(multiply.sha) == [True] - @pytest.mark.asyncio(forbid_global_loop=True) async def test_eval_msgpack_pipeline_error_in_lua(self, r): msgpack_hello = r.register_script(msgpack_hello_script) assert msgpack_hello.sha