Skip to content

Commit 79c535c

Browse files
authored
Merge branch 'master' into url-parsing
2 parents 923ab4f + e00f3d2 commit 79c535c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/integration.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
max-parallel: 15
6464
fail-fast: false
6565
matrix:
66-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9']
66+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10']
6767
test-type: ['standalone', 'cluster']
6868
connection-type: ['hiredis', 'plain']
6969
env:
@@ -184,7 +184,7 @@ jobs:
184184
strategy:
185185
fail-fast: false
186186
matrix:
187-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9']
187+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10']
188188
steps:
189189
- uses: actions/checkout@v4
190190
- uses: actions/setup-python@v5

tests/test_commands.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4964,6 +4964,7 @@ def test_latency_latest(self, r: redis.Redis):
49644964
def test_latency_reset(self, r: redis.Redis):
49654965
assert r.latency_reset() == 0
49664966

4967+
@pytest.mark.redismod
49674968
@skip_if_server_version_lt("4.0.0")
49684969
@skip_if_redis_enterprise()
49694970
def test_module_list(self, r):
@@ -5033,6 +5034,7 @@ def test_command_getkeysandflags(self, r: redis.Redis):
50335034
[b"mylist2", [b"RW", b"insert"]],
50345035
]
50355036

5037+
@pytest.mark.redismod
50365038
@pytest.mark.onlynoncluster
50375039
@skip_if_server_version_lt("4.0.0")
50385040
@skip_if_redis_enterprise()
@@ -5045,6 +5047,7 @@ def test_module(self, stack_r):
50455047
stack_r.module_load("/some/fake/path", "arg1", "arg2", "arg3", "arg4")
50465048
assert "Error loading the extension." in str(excinfo.value)
50475049

5050+
@pytest.mark.redismod
50485051
@pytest.mark.onlynoncluster
50495052
@skip_if_server_version_lt("7.0.0")
50505053
@skip_if_redis_enterprise()

0 commit comments

Comments
 (0)