From aa8d4c0067b9af8be4f6696f47e1745491d2c29d Mon Sep 17 00:00:00 2001 From: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> Date: Mon, 29 Jan 2024 14:19:39 -0500 Subject: [PATCH] NEP deprecate 3.8; remove parallel arguments --- .github/workflows/testing.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 }}