Skip to content

Commit 121fa72

Browse files
committed
Skip Python 3.10 + Redis 6.2 + redis-py <5 combo in tests
1 parent a16fcbe commit 121fa72

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,14 @@ jobs:
2727
- name: "Memory (in-memory backend)"
2828
redis-version: "memory"
2929
redis-py-version: ">=5"
30+
exclude:
31+
# Python 3.10 + Redis 6.2 + redis-py <5 combination is skipped
32+
- python-version: "3.10"
33+
backend:
34+
name: "Redis 6.2, redis-py <5"
35+
redis-version: "6.2"
36+
redis-py-version: ">=4.6,<5"
3037
include:
31-
# Python 3.10 hangs when we include the CLI tests, so ignore it and
32-
# use a lower threshold to compensate
3338
- python-version: "3.10"
3439
cov-threshold: 100
3540
pytest-args: ""

0 commit comments

Comments
 (0)