Skip to content

Commit

Permalink
test reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasst committed Jun 24, 2024
1 parent d22d963 commit 4d53000
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,10 @@ jobs:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: ['ubuntu-20.04']
requirements: ["requirements_tests"]
redis-version: [4, 5, 6, 7]
redis-py-version: [3.3.0, 4.6.0]
# Do not cancel any jobs when a single job fails
fail-fast: false
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} with ${{ matrix.requirements }} and Redis ${{ matrix.redis-version }} and redis-py==${{ matrix.redis-py-version }}
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} with Redis ${{ matrix.redis-version }}
runs-on: ${{ matrix.os }}
container: python:${{ matrix.python-version }}
services:
Expand All @@ -54,7 +52,7 @@ jobs:

- name: Install dependencies
run: |
pip install -r ${{ matrix.requirements }}.txt
pip install -r requirements.txt -r requirements-test.txt
- name: Run tests
run: pytest
Expand Down

0 comments on commit 4d53000

Please sign in to comment.