From 4d53000f4cbd1f74e3ad9723aced1f1855880cf2 Mon Sep 17 00:00:00 2001 From: Thomas Steinacher Date: Mon, 24 Jun 2024 15:59:11 -0500 Subject: [PATCH] test reqs --- .github/workflows/test.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ae41359..cb066b2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -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: @@ -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