Skip to content
Merged
Changes from all commits
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
8 changes: 4 additions & 4 deletions .github/workflows/slow_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
/bin/bash tests/ci/example_diff_tests.sh
deepspeed:
name: Test DeepSpeed models
if: ${{ always() }}
if: ${{ !cancelled() && (success() || failure()) }}
needs:
- start-runner
- example-diff # run the job when the previous test job is done
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
/bin/bash tests/ci/slow_tests_deepspeed.sh
multi-card:
name: Test multi-card models
if: ${{ always() }}
if: ${{ !cancelled() && (success() || failure()) }}
needs:
- start-runner
- example-diff
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
/bin/bash tests/ci/slow_tests_8x.sh
single-card:
name: Test single-card models
if: ${{ always() }}
if: ${{ !cancelled() && (success() || failure()) }}
needs:
- start-runner
- example-diff
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
/bin/bash tests/ci/slow_tests_1x.sh
albert-xxl-single-card:
name: Test single-card ALBERT XXL
if: ${{ always() }}
if: ${{ !cancelled() && (success() || failure()) }}
needs:
- start-runner
- example-diff
Expand Down