diff options
author | Bar Shaul <88437685+barshaul@users.noreply.github.com> | 2021-11-25 14:15:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-25 14:15:24 +0200 |
commit | 9db1eec71b443b8e7e74ff503bae651dc6edf411 (patch) | |
tree | ce23ac6f923df54676349603f4e5551dfc801057 /tests/test_scripting.py | |
parent | 021d4ac0edaecedb9b83235700cc4699cb119ef1 (diff) | |
download | redis-py-9db1eec71b443b8e7e74ff503bae651dc6edf411.tar.gz |
Adding RedisCluster client to support Redis Cluster Mode (#1660)
Co-authored-by: Chayim <chayim@users.noreply.github.com>
Co-authored-by: Anas <anas.el.amraoui@live.com>
Diffstat (limited to 'tests/test_scripting.py')
-rw-r--r-- | tests/test_scripting.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_scripting.py b/tests/test_scripting.py index 352f3ba..7614b12 100644 --- a/tests/test_scripting.py +++ b/tests/test_scripting.py @@ -22,6 +22,7 @@ return "hello " .. name """ +@pytest.mark.onlynoncluster class TestScripting: @pytest.fixture(autouse=True) def reset_scripts(self, r): |