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
7 changes: 3 additions & 4 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,13 @@ jobs:
run: pip3 install .[test]

- name: prepare input eta files
run: |
python tests/grid/generate_eta_files.py
run: python tests/grid/generate_eta_files.py

- name: Run serial-cpu tests
run: coverage run --rcfile=setup.cfg -m pytest -x tests
run: coverage run --rcfile=setup.cfg -m pytest tests

- name: Run parallel-cpu tests
run: mpiexec -np 6 --oversubscribe coverage run --rcfile=setup.cfg -m mpi4py -m pytest -x tests/mpi
run: mpiexec -np 6 --oversubscribe coverage run --rcfile=setup.cfg -m mpi4py -m pytest tests/mpi

- name: Output code coverage
run: |
Expand Down