Skip to content

Commit 5ca9b53

Browse files
use pip for CI add ons for simplicity
1 parent a1e8cf6 commit 5ca9b53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ jobs:
118118
119119
# Install right redis version based on redis py
120120
if [[ "${{ matrix.redis-py-version }}" == "5.x" ]]; then
121-
poetry add "redis>=5.0.0,<6.0.0"
121+
poetry run pip install "redis>=5.0.0,<6.0.0"
122122
else
123-
poetry add "redis>=6.0.0,<7.0.0"
123+
poetry run pip install "redis>=6.0.0,<7.0.0"
124124
fi
125125
126126
- name: Set Redis image name

0 commit comments

Comments
 (0)