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 12d1708 commit c496bedCopy full SHA for c496bed
.github/workflows/build.yml
@@ -20,8 +20,6 @@ jobs:
20
exclude:
21
- os: macos-latest
22
mpi: 'intelmpi'
23
- - mpi: 'openmpi'
24
- rank: '9' # works locally, not in CI
25
runs-on: ${{ matrix.os }}
26
steps:
27
- name: Checkout
@@ -45,4 +43,9 @@ jobs:
45
43
- name: Install pylops-mpi
46
44
run: pip install .
47
- name: Testing using pytest-mpi
48
- run: mpiexec -n ${{ matrix.rank }} pytest tests/ --with-mpi
+ run: |
+ if [ "${{ matrix.mpi }}" = "openmpi" ]; then
+ mpiexec --oversubscribe -n ${{ matrix.rank }} pytest tests/ --with-mpi
49
+ else
50
+ mpiexec -n ${{ matrix.rank }} pytest tests/ --with-mpi
51
+ fi
0 commit comments