Skip to content

Commit

Permalink
[ci] remove argument unknown to mpich
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesBuchner committed Jul 28, 2023
1 parent 6660003 commit 8c29f1f
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:
if: ${{ matrix.MPI != 'no' }}
run: |
pip install --user mpi4py
python -c 'import mpi4py'
- name: Install MultiNest
run: |
Expand Down Expand Up @@ -94,12 +95,15 @@ jobs:
python pymultinest_demo.py
- name: MPI tests
if: ${{ matrix.MPI != 'no' }}
if: ${{ matrix.MPI == 'openmpi' }}
run: |
mpiexec -np 4 --oversubscribe python pymultinest_demo_minimal.py
mpiexec -np 4 --oversubscribe python pymultinest_demo.py
- name: MPI tests
if: ${{ matrix.MPI == 'mpich' }}
run: |
python -c 'import mpi4py' &&
mpiexec -np 4 --oversubscribe python pymultinest_demo_minimal.py;
python -c 'import mpi4py' &&
mpiexec -np 4 --oversubscribe python pymultinest_demo.py;
mpiexec -np 4 python pymultinest_demo_minimal.py
mpiexec -np 4 python pymultinest_demo.py
- name: Long filename test
run: |
Expand Down

0 comments on commit 8c29f1f

Please sign in to comment.