We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1952cc commit 7d970f4Copy full SHA for 7d970f4
.github/workflows/build.yml
@@ -43,4 +43,9 @@ jobs:
43
- name: Install pylops-mpi
44
run: pip install .
45
- name: Testing using pytest-mpi
46
- run: mpiexec --host localhost:12 -n ${{ matrix.rank }} pytest tests/test_blockdiag.py --with-mpi -v -x
+ run: |
47
+ if [ "${{ matrix.mpi }}" = "openmpi" ]; then
48
+ mpiexec --host localhost:12 -n ${{ matrix.rank }} pytest tests/test_blockdiag.py --with-mpi -v -x
49
+ else
50
+ mpiexec -n ${{ matrix.rank }} pytest tests/test_blockdiag.py --with-mpi -v -x
51
+ fi
0 commit comments