We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1305299 commit 8b73315Copy full SHA for 8b73315
.github/workflows/failed_tests.yml
@@ -0,0 +1,19 @@
1
+name: failed_tests
2
+permissions: read-all
3
+
4
+on:
5
+ workflow_dispatch:
6
+ paths-ignore:
7
+ - '**/*.md'
8
+ - 'docs/**/*'
9
+ - 'tests/post_training/*' # post_training tests runs on Jenkins
10
+ - 'tests/torch/sota_checkpoints_eval.json' # reference for PT e2e
11
+ - 'tests/tensorflow/sota_checkpoints_eval.json' # reference for TF e2e
12
+ - 'tests/cross_fw/examples/*' # examples tests runs in separate workflow
13
14
+jobs:
15
+ pytest:
16
+ uses: ./.github/workflows/call_precommit2.yml
17
+ with:
18
+ python_version: "3.10.14"
19
+ gpu_enabled: true
0 commit comments