diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index d28b4ea..6867036 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11"] os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: s-weigand/setup-conda@v1 @@ -28,10 +28,10 @@ jobs: run: pip install .[test] - name: Run full pytest with coverage - run: pytest -rsx -n auto --dist loadscope --cov=./ --cov-report xml:./codecov.xml + run: pytest -rsx --cov=./ --cov-report xml:./codecov.xml - name: Upload full coverage to Codecov - if: ${{ matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest' }} + if: ${{ matrix.python-version == '3.11' && matrix.os == 'ubuntu-latest' }} uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }}