Skip to content

Commit 9e1fe6d

Browse files
committed
run mpi tests with more output
1 parent cf9d1cb commit 9e1fe6d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,18 @@ jobs:
8686
- name: Show environment
8787
run: pip freeze
8888

89+
- name: Run mpi tests
90+
if: ${{ matrix.mpi }}
91+
run: |
92+
pytest -vsx --color=yes --cov=ipyparallel ipyparallel/tests/test_cluster.py
93+
8994
- name: Run tests
95+
if: ${{ ! matrix.mpi }}
9096
# FIXME: --color=yes explicitly set because:
9197
# https://github.com/actions/runner/issues/241
9298
run: |
9399
pytest -v --maxfail=3 --color=yes --cov=ipyparallel ipyparallel/tests
100+
94101
- name: Submit codecov report
95102
run: |
96103
codecov

0 commit comments

Comments
 (0)