diff options
author | dvora-h <67596500+dvora-h@users.noreply.github.com> | 2022-04-04 12:33:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-04 12:33:58 +0300 |
commit | d41f8aab791fe0d9a620f99ad0b277f5eed47c5f (patch) | |
tree | e790b23db8c53d381f7b03b5d6d84997ff89f5c8 /tests/test_command_parser.py | |
parent | 17f1140506310748a4f8164259d73fd0a4d362d5 (diff) | |
download | redis-py-d41f8aab791fe0d9a620f99ad0b277f5eed47c5f.tar.gz |
Clean up test supoort enterprise environments (#2082)
* skip tests on enterprise
* delete dping implementation
Diffstat (limited to 'tests/test_command_parser.py')
-rw-r--r-- | tests/test_command_parser.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_command_parser.py b/tests/test_command_parser.py index ab050a7..1457e27 100644 --- a/tests/test_command_parser.py +++ b/tests/test_command_parser.py @@ -2,7 +2,7 @@ import pytest from redis.commands import CommandsParser -from .conftest import skip_if_server_version_lt +from .conftest import skip_if_redis_enterprise, skip_if_server_version_lt class TestCommandsParser: @@ -21,6 +21,7 @@ class TestCommandsParser: assert commands_parser.get_keys(r, *args3) == ["foo", "bar", "foobar"] @pytest.mark.filterwarnings("ignore:ResponseError") + @skip_if_redis_enterprise() def test_get_moveable_keys(self, r): commands_parser = CommandsParser(r) args1 = [ |