Skip to content

Commit

Permalink
NEP deprecate 3.8; remove parallel arguments (#24)
Browse files Browse the repository at this point in the history
* NEP deprecate 3.8; remove parallel arguments

* Update codecov.yml

* try explicit src

---------

Co-authored-by: Garrett Michael Flynn <[email protected]>
  • Loading branch information
CodyCBakerPhD and garrettmflynn authored Jan 29, 2024
1 parent 3c69244 commit e161cb9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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=./src --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
4 changes: 2 additions & 2 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ coverage:
patch: off

ignore:
- "./tests/"
- "./demo/"
- "tests"
- "demo"

0 comments on commit e161cb9

Please sign in to comment.