Skip to content

Commit

Permalink
Disable nightly tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Sep 25, 2024
1 parent d602a5e commit 1987a03
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
platform: [ubuntu-latest, macos-13, macos-latest, windows-latest]
python-version:
["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9", "pypy-3.10"]
nightly: [[True, "nightly-"], [False, ""]]
# TODO: disable nightly NumPy tests for now, re-enable later
# nightly: [[True, "nightly-"], [False, ""]]
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/setup-python@v5.1.1
Expand All @@ -39,8 +40,10 @@ jobs:

- name: Run CPython tests
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
run: uvx nox -s ${{ matrix.nightly[1] }}tests
# run: uvx nox -s ${{ matrix.nightly[1] }}tests
run: uvx nox -s tests

- name: Run PyPy tests
if: ${{ startsWith(matrix.python-version, 'pypy') }}
run: uvx nox -s ${{ matrix.nightly[1] }}tests
# run: uvx nox -s ${{ matrix.nightly[1] }}tests
run: uvx nox -s tests

0 comments on commit 1987a03

Please sign in to comment.