Skip to content

Commit

Permalink
NEP deprecate 3.8; remove parallel arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Jan 29, 2024
1 parent 972d4a6 commit aa8d4c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand Down

0 comments on commit aa8d4c0

Please sign in to comment.