Skip to content

Commit

Permalink
Don't run pytest-cov for macOS in CI, which will fail
Browse files Browse the repository at this point in the history
  • Loading branch information
mjwen committed Feb 24, 2024
1 parent cba0f66 commit 36007dc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ jobs:
python -m pip install git+https://github.com/yonatank93/ptemcee.git@enhance_v1.0.0
- name: Run tests
if: matrix.os == 'macos-latest'
shell: bash -el {0}
run: |
cd tests
pytest
- name: Run tests
if: matrix.os == 'ubuntu-latest'
shell: bash -el {0}
run: |
cd tests
Expand Down

0 comments on commit 36007dc

Please sign in to comment.