Skip to content

Commit

Permalink
Merge pull request #23 from ecmwf/develop
Browse files Browse the repository at this point in the history
Github actions to run only for pyaviso if runner is macos
  • Loading branch information
sametd authored Jan 10, 2024
2 parents 6a3c521 + e310296 commit 73b5662
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/check-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,22 @@ jobs:
pip install -U -r tests/requirements-dev.txt
pip install -r docs/requirements.txt
- name: Tests
- name: Tests on Ubuntu
if: matrix.platform == 'ubuntu-20.04'
run: |
pip freeze
pytest
env:
AVISO_DEBUG: True

- name: Tests on macOS
if: matrix.platform == 'macos-13'
run: |
pip freeze
pytest -v --cov=pyaviso --cache-clear
env:
AVISO_DEBUG: True

- name: Documentation
run: |
make clean
Expand Down

0 comments on commit 73b5662

Please sign in to comment.