Skip to content

Commit

Permalink
Use test discover
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Aug 5, 2023
1 parent bbd9e5d commit 82b5b7c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unittest-mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ jobs:
- name: Test
shell: bash -l {0}
timeout-minutes: 5
run: for f in $(ls tests/test_*.py); do echo $f; python -m unittest $f; done
run: python -m unittest discover tests
2 changes: 1 addition & 1 deletion .github/workflows/unittest-openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Test
shell: bash -l {0}
timeout-minutes: 5
run: for f in $(ls tests/test_*.py); do echo $f; python -m unittest $f; done
run: python -m unittest discover tests
env:
OMPI_MCA_plm: 'isolated'
OMPI_MCA_rmaps_base_oversubscribe: 'yes'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittest-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
- name: Test
shell: bash -l {0}
timeout-minutes: 5
run: for f in $(ls tests/test_*.py); do echo $f; python -m unittest $f; done
run: python -m unittest discover tests

0 comments on commit 82b5b7c

Please sign in to comment.