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 d546834
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,17 @@ concurrency:

jobs:
test:
name: Test / ${{ matrix.platform }} / Nightly ${{ matrix.nightly[0] }} / Python ${{ matrix.python-version }}
# name: Test / ${{ matrix.platform }} / Nightly ${{ matrix.nightly[0] }} / Python ${{ matrix.python-version }}
name: Test / ${{ matrix.platform }} / Python ${{ matrix.python-version }}
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
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/[email protected]
- uses: actions/[email protected]
Expand All @@ -39,8 +41,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 d546834

Please sign in to comment.