From cc9b8146462dc1e22660f2edfccc62c4dbf19c70 Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Sat, 16 Apr 2022 23:41:48 +0200 Subject: [PATCH] Fix --- .github/workflows/github-ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-ci.yaml b/.github/workflows/github-ci.yaml index 5d9ff7705..6fe34071a 100644 --- a/.github/workflows/github-ci.yaml +++ b/.github/workflows/github-ci.yaml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["2.7", "3.6", "3.7", "3.7.4", "3.8", "3.9", "3.10"] + python-version: ["2.7", "3.6", "3.7", "3.10.1", "3.8", "3.9", "3.10"] steps: - name: Checkout Code @@ -45,11 +45,11 @@ jobs: - name: Test with pytest run: | python -m coverage run --parallel-mode -m pytest Tests -vv - if: matrix.python-version != '3.7.4' + if: matrix.python-version != '3.10.1' - name: Test with pytest run: | python -OO -m coverage run --parallel-mode -m pytest Tests -vv - if: matrix.python-version == '3.7.4' + if: matrix.python-version == '3.10.1' - name: Upload coverage data uses: actions/upload-artifact@v3 with: