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 f5d5944 commit 741fd40Copy full SHA for 741fd40
.github/workflows/main.yaml
@@ -34,9 +34,14 @@ jobs:
34
- name: Install
35
run: |
36
python -m pip install --user dist/pmesh*whl
37
- - name: Python unit tests
+ - name: Build in place for tests
38
39
python setup.py build_ext --inplace
40
+ - name: Non-MPI python unit tests #So that the MPI_XFAIL tests run
41
+ run: |
42
+ python -m pytest
43
+ - name: Python unit tests w varying rank
44
45
mpirun -n 1 python -m pytest --with-mpi
46
mpirun -n 2 python -m pytest --with-mpi
47
mpirun -n 4 --oversubscribe python -m pytest --with-mpi
0 commit comments