Skip to content

Commit 37b5ed4

Browse files
committed
test: addressing flaky spawn "process 0 terminated with signal SIGABRT"
1 parent 3138305 commit 37b5ed4

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/ci-tests-fabric.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,8 @@ jobs:
168168
echo $GITHUB_RUN_ID
169169
python -m coverage run --source ${{ env.COVERAGE_SCOPE }} \
170170
-m pytest -v --timeout=30 --durations=50 --random-order-seed=$GITHUB_RUN_ID \
171+
# adressing flaky: process 0 terminated with signal SIGABRT
172+
--reruns 3 --rerun-except="torch.multiprocessing.spawn.ProcessExitedException" \
171173
--junitxml=junit.xml -o junit_family=legacy # NOTE: for Codecov's test results
172174
173175
- name: Statistics

.github/workflows/ci-tests-pytorch.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,8 @@ jobs:
197197
echo $GITHUB_RUN_ID
198198
python -m coverage run --source ${{ env.COVERAGE_SCOPE }} \
199199
-m pytest . -v --timeout=60 --durations=50 --random-order-seed=$GITHUB_RUN_ID \
200+
# adressing flaky: process 0 terminated with signal SIGABRT
201+
--reruns 3 --rerun-except="torch.multiprocessing.spawn.ProcessExitedException" \
200202
--junitxml=junit.xml -o junit_family=legacy # NOTE: for Codecov's test results
201203
202204
- name: Statistics

0 commit comments

Comments
 (0)