Skip to content

Commit c21705d

Browse files
fixup
1 parent 17d715d commit c21705d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/CI.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -135,18 +135,18 @@ jobs:
135135
- name: Run tests
136136
run: |
137137
export PYTHONPATH="$PWD/build"
138-
mpirun -np 1 python3 -m pytest tests/test_cluster.py
139-
mpirun -np 2 python3 -m pytest tests/test_cluster.py
140-
mpirun -np 3 python3 -m pytest tests/test_cluster.py
141-
mpirun -np 4 python3 -m pytest tests/test_cluster.py
142-
mpirun -np 1 python3 -m pytest tests/test_distributed_operator.py
143-
mpirun -np 2 python3 -m pytest tests/test_distributed_operator.py
144-
mpirun -np 3 python3 -m pytest tests/test_distributed_operator.py
145-
mpirun -np 4 python3 -m pytest tests/test_distributed_operator.py
146-
mpirun -np 1 python3 -m pytest tests/test_ddm_solver.py
147-
mpirun -np 2 python3 -m pytest tests/test_ddm_solver.py
148-
mpirun -np 3 python3 -m pytest tests/test_ddm_solver.py
149-
mpirun -np 4 python3 -m pytest tests/test_ddm_solver.py
138+
mpirun -np 1 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_cluster.py
139+
mpirun -np 2 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_cluster.py
140+
mpirun -np 3 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_cluster.py
141+
mpirun -np 4 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_cluster.py
142+
mpirun -np 1 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_distributed_operator.py
143+
mpirun -np 2 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_distributed_operator.py
144+
mpirun -np 3 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_distributed_operator.py
145+
mpirun -np 4 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_distributed_operator.py
146+
mpirun -np 1 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_ddm_solver.py
147+
mpirun -np 2 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_ddm_solver.py
148+
mpirun -np 3 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_ddm_solver.py
149+
mpirun -np 4 ${{ matrix.MPIEXEC_PREFLAGS }} python3 -m pytest tests/test_ddm_solver.py
150150
python3 -m pytest tests/test_hmatrix.py
151151
python3 -m pytest tests/test_logger.py
152152

0 commit comments

Comments
 (0)