Skip to content

Commit

Permalink
Merge pull request #162 from pyiron/discover
Browse files Browse the repository at this point in the history
Use test discover
  • Loading branch information
jan-janssen authored Nov 2, 2023
2 parents 3824e4d + 81feb85 commit 988f546
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: cd tests; python -m unittest discover .
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: cd tests; python -m unittest discover .
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: cd tests; python -m unittest discover .

0 comments on commit 988f546

Please sign in to comment.