Skip to content

Commit 66dcf3d

Browse files
committed
cmd fix
1 parent 37b5ed4 commit 66dcf3d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,10 @@ jobs:
166166
# NOTE: do not include coverage report here, see: https://github.com/nedbat/coveragepy/issues/1003
167167
run: |
168168
echo $GITHUB_RUN_ID
169+
# adressing flaky: process 0 terminated with signal SIGABRT
169170
python -m coverage run --source ${{ env.COVERAGE_SCOPE }} \
170171
-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" \
172+
--reruns=3 --rerun-except="torch.multiprocessing.spawn.ProcessExitedException" \
173173
--junitxml=junit.xml -o junit_family=legacy # NOTE: for Codecov's test results
174174
175175
- name: Statistics

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,10 +195,10 @@ jobs:
195195
# NOTE: do not include coverage report here, see: https://github.com/nedbat/coveragepy/issues/1003
196196
run: |
197197
echo $GITHUB_RUN_ID
198+
# adressing flaky: process 0 terminated with signal SIGABRT
198199
python -m coverage run --source ${{ env.COVERAGE_SCOPE }} \
199200
-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" \
201+
--reruns=3 --rerun-except="torch.multiprocessing.spawn.ProcessExitedException" \
202202
--junitxml=junit.xml -o junit_family=legacy # NOTE: for Codecov's test results
203203
204204
- name: Statistics

0 commit comments

Comments
 (0)