Skip to content

Commit 81e0a84

Browse files
committed
workflows: Drop unecessary -n 1 in parallel tests
1 parent 7718ce5 commit 81e0a84

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pytest-petsc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ jobs:
7474
7575
- name: Test with pytest - serial
7676
run: |
77-
${{ env.RUN_CMD }} mpiexec -n 1 pytest -m "not parallel" --cov --cov-config=.coveragerc --cov-report=xml ${{ env.TESTS }}
77+
${{ env.RUN_CMD }} pytest -m "not parallel" --cov --cov-config=.coveragerc --cov-report=xml ${{ env.TESTS }}
7878
7979
- name: Test with pytest - parallel
8080
run: |
81-
${{ env.RUN_CMD }} mpiexec -n 1 pytest -m parallel --cov --cov-config=.coveragerc --cov-report=xml ${{ env.TESTS }}
81+
${{ env.RUN_CMD }} pytest -m parallel --cov --cov-config=.coveragerc --cov-report=xml ${{ env.TESTS }}
8282
8383
- name: Test examples
8484
run: |

0 commit comments

Comments
 (0)