diff --git a/tests/test_commands.py b/tests/test_commands.py index 02afab3c40..74e9c1c88e 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -4964,6 +4964,7 @@ def test_latency_latest(self, r: redis.Redis): def test_latency_reset(self, r: redis.Redis): assert r.latency_reset() == 0 + @pytest.mark.redismod @skip_if_server_version_lt("4.0.0") @skip_if_redis_enterprise() def test_module_list(self, r): @@ -5033,6 +5034,7 @@ def test_command_getkeysandflags(self, r: redis.Redis): [b"mylist2", [b"RW", b"insert"]], ] + @pytest.mark.redismod @pytest.mark.onlynoncluster @skip_if_server_version_lt("4.0.0") @skip_if_redis_enterprise() @@ -5045,6 +5047,7 @@ def test_module(self, stack_r): stack_r.module_load("/some/fake/path", "arg1", "arg2", "arg3", "arg4") assert "Error loading the extension." in str(excinfo.value) + @pytest.mark.redismod @pytest.mark.onlynoncluster @skip_if_server_version_lt("7.0.0") @skip_if_redis_enterprise()