From a528451370af830b73f53469e92f92935df705f5 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Mon, 9 Sep 2024 11:08:31 -0400 Subject: [PATCH] build: Fix the test matrix. If we pin the python version in the toxenv settings we can't actually test with multiple python versions. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d560ab..2da13eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: python-version: ["3.8", "3.11", "3.12"] toxenv: [ - py38-django42-drflatest,quality + django42-drflatest,quality ] steps: @@ -41,7 +41,7 @@ jobs: run: tox - name: Run Coverage - if: matrix.python-version == '3.8' && matrix.toxenv=='py38-django42-drflatest' + if: matrix.python-version == '3.12' && matrix.toxenv=='django42-drflatest' uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }}