Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 1 addition & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "macos-latest", "macos-14", "windows-latest"]
os: [ "ubuntu-latest", "macos-latest", "windows-latest"]
python-version: [ "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Cancel previous runs
Expand Down Expand Up @@ -66,21 +66,3 @@ jobs:
- name: Run Namespace Tests
run: |
python -m pytest test

- name: Run Coverage Tests
run: |
python -m pytest test -v --cov=./uxarray --cov-report=xml
env:
NUMBA_DISABLE_JIT: 1

- name: Upload code coverage to Codecov
if: github.repository == 'UXARRAY/uxarray'
uses: codecov/codecov-action@v5.4.3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: false
Loading