We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a16fcbe commit 121fa72Copy full SHA for 121fa72
.github/workflows/ci.yml
@@ -27,9 +27,14 @@ jobs:
27
- name: "Memory (in-memory backend)"
28
redis-version: "memory"
29
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"
37
include:
- # Python 3.10 hangs when we include the CLI tests, so ignore it and
- # use a lower threshold to compensate
38
- python-version: "3.10"
39
cov-threshold: 100
40
pytest-args: ""
0 commit comments