diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ae41359..1d25b58 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -32,10 +32,9 @@ jobs: 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 ${{ matrix.requirements }} and Redis ${{ matrix.redis-version }} runs-on: ${{ matrix.os }} container: python:${{ matrix.python-version }} services: @@ -54,7 +53,7 @@ jobs: - name: Install dependencies run: | - pip install -r ${{ matrix.requirements }}.txt + pip install -r requirements-tests.txt - name: Run tests run: pytest