Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci-tests-fabric.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ jobs:
echo $GITHUB_RUN_ID
python -m coverage run --source ${{ env.COVERAGE_SCOPE }} \
-m pytest -v --timeout=30 --durations=50 --random-order-seed=$GITHUB_RUN_ID \
# adressing flaky: process 0 terminated with signal SIGABRT
--reruns 3 --rerun-except="torch.multiprocessing.spawn.ProcessExitedException" \
--junitxml=junit.xml -o junit_family=legacy # NOTE: for Codecov's test results

- name: Statistics
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-tests-pytorch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ jobs:
echo $GITHUB_RUN_ID
python -m coverage run --source ${{ env.COVERAGE_SCOPE }} \
-m pytest . -v --timeout=60 --durations=50 --random-order-seed=$GITHUB_RUN_ID \
# adressing flaky: process 0 terminated with signal SIGABRT
--reruns 3 --rerun-except="torch.multiprocessing.spawn.ProcessExitedException" \
--junitxml=junit.xml -o junit_family=legacy # NOTE: for Codecov's test results

- name: Statistics
Expand Down
Loading