Skip to content

Commit 66fa3a3

Browse files
committed
force run all tests no matter previous is success or fail (#3930)
1 parent a80ec9a commit 66fa3a3

File tree

4 files changed

+47
-2
lines changed

4 files changed

+47
-2
lines changed

.github/workflows/build-test-linux-x86_64.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ jobs:
8282
L0-dynamo-converter-tests:
8383
name: L0 dynamo converter tests
8484
needs: [filter-matrix, build]
85+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
8586
strategy:
8687
fail-fast: false
8788
matrix:
@@ -110,6 +111,7 @@ jobs:
110111
L0-dynamo-core-tests:
111112
name: L0 dynamo core tests
112113
needs: [filter-matrix, build]
114+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
113115
strategy:
114116
fail-fast: false
115117
matrix:
@@ -141,6 +143,7 @@ jobs:
141143
L0-py-core-tests:
142144
name: L0 core python tests
143145
needs: [filter-matrix, build]
146+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
144147
strategy:
145148
fail-fast: false
146149
matrix:
@@ -169,6 +172,7 @@ jobs:
169172
L0-torchscript-tests:
170173
name: L0 torchscript tests
171174
needs: [filter-matrix, build]
175+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
172176
strategy:
173177
fail-fast: false
174178
matrix:
@@ -201,6 +205,7 @@ jobs:
201205
L1-dynamo-core-tests:
202206
name: L1 dynamo core tests
203207
needs: [filter-matrix, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests, L0-torchscript-tests]
208+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
204209
strategy:
205210
fail-fast: false
206211
matrix:
@@ -229,6 +234,7 @@ jobs:
229234
L1-dynamo-compile-tests:
230235
name: L1 dynamo compile tests
231236
needs: [filter-matrix, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests, L0-torchscript-tests]
237+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
232238
strategy:
233239
fail-fast: false
234240
matrix:
@@ -257,6 +263,7 @@ jobs:
257263
L1-torch-compile-tests:
258264
name: L1 torch compile tests
259265
needs: [filter-matrix, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests, L0-torchscript-tests]
266+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
260267
strategy:
261268
fail-fast: false
262269
matrix:
@@ -287,6 +294,7 @@ jobs:
287294
L1-torchscript-tests:
288295
name: L1 torch script tests
289296
needs: [filter-matrix, build, L0-dynamo-core-tests, L0-dynamo-converter-tests, L0-py-core-tests, L0-torchscript-tests]
297+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
290298
strategy:
291299
fail-fast: false
292300
matrix:
@@ -319,6 +327,7 @@ jobs:
319327
L2-torch-compile-tests:
320328
name: L2 torch compile tests
321329
needs: [filter-matrix, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests, L1-torchscript-tests]
330+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
322331
strategy:
323332
fail-fast: false
324333
matrix:
@@ -348,6 +357,7 @@ jobs:
348357
L2-dynamo-compile-tests:
349358
name: L2 dynamo compile tests
350359
needs: [filter-matrix, build, L1-dynamo-compile-tests, L1-dynamo-core-tests, L1-torch-compile-tests, L1-torchscript-tests]
360+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
351361
strategy:
352362
fail-fast: false
353363
matrix:
@@ -377,6 +387,7 @@ jobs:
377387
L2-dynamo-core-tests:
378388
name: L2 dynamo core tests
379389
needs: [filter-matrix, build, L1-dynamo-core-tests, L1-dynamo-compile-tests, L1-torch-compile-tests, L1-torchscript-tests]
390+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
380391
strategy:
381392
fail-fast: false
382393
matrix:
@@ -405,6 +416,7 @@ jobs:
405416
L2-dynamo-plugin-tests:
406417
name: L2 dynamo plugin tests
407418
needs: [filter-matrix, build, L1-dynamo-core-tests, L1-dynamo-compile-tests, L1-torch-compile-tests, L1-torchscript-tests]
419+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
408420
strategy:
409421
fail-fast: false
410422
matrix:
@@ -433,6 +445,7 @@ jobs:
433445
L2-torchscript-tests:
434446
name: L2 torch script tests
435447
needs: [filter-matrix, build, L1-dynamo-core-tests, L1-dynamo-compile-tests, L1-torch-compile-tests, L1-torchscript-tests]
448+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
436449
strategy:
437450
fail-fast: false
438451
matrix:
@@ -465,6 +478,7 @@ jobs:
465478
L2-dynamo-distributed-tests:
466479
name: L2 dynamo distributed tests
467480
needs: [filter-matrix, build, L1-dynamo-core-tests, L1-dynamo-compile-tests, L1-torch-compile-tests, L1-torchscript-tests]
481+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
468482
strategy:
469483
fail-fast: false
470484
matrix:

.github/workflows/build-test-linux-x86_64_rtx.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ jobs:
8181
L0-dynamo-converter-tests:
8282
name: L0 dynamo converter tests
8383
needs: [filter-matrix, build]
84+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
8485
strategy:
8586
fail-fast: false
8687
matrix:
@@ -110,6 +111,7 @@ jobs:
110111
L0-dynamo-core-tests:
111112
name: L0 dynamo core tests
112113
needs: [filter-matrix, build]
114+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
113115
strategy:
114116
fail-fast: false
115117
matrix:
@@ -142,6 +144,7 @@ jobs:
142144
L0-py-core-tests:
143145
name: L0 core python tests
144146
needs: [filter-matrix, build]
147+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
145148
strategy:
146149
fail-fast: false
147150
matrix:
@@ -171,6 +174,7 @@ jobs:
171174
L1-dynamo-core-tests:
172175
name: L1 dynamo core tests
173176
needs: [filter-matrix, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests]
177+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
174178
strategy:
175179
fail-fast: false
176180
matrix:
@@ -200,6 +204,7 @@ jobs:
200204
L1-dynamo-compile-tests:
201205
name: L1 dynamo compile tests
202206
needs: [filter-matrix, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests]
207+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
203208
strategy:
204209
fail-fast: false
205210
matrix:
@@ -229,6 +234,7 @@ jobs:
229234
L1-torch-compile-tests:
230235
name: L1 torch compile tests
231236
needs: [filter-matrix, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests]
237+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
232238
strategy:
233239
fail-fast: false
234240
matrix:
@@ -261,6 +267,7 @@ jobs:
261267
L2-torch-compile-tests:
262268
name: L2 torch compile tests
263269
needs: [filter-matrix, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests]
270+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
264271
strategy:
265272
fail-fast: false
266273
matrix:
@@ -291,6 +298,7 @@ jobs:
291298
L2-dynamo-compile-tests:
292299
name: L2 dynamo compile tests
293300
needs: [filter-matrix, build, L1-dynamo-compile-tests, L1-dynamo-core-tests, L1-torch-compile-tests]
301+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
294302
strategy:
295303
fail-fast: false
296304
matrix:
@@ -321,6 +329,7 @@ jobs:
321329
L2-dynamo-core-tests:
322330
name: L2 dynamo core tests
323331
needs: [filter-matrix, build, L1-dynamo-core-tests, L1-dynamo-compile-tests, L1-torch-compile-tests]
332+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
324333
strategy:
325334
fail-fast: false
326335
matrix:
@@ -350,6 +359,7 @@ jobs:
350359
L2-dynamo-plugin-tests:
351360
name: L2 dynamo plugin tests
352361
needs: [filter-matrix, build, L1-dynamo-core-tests, L1-dynamo-compile-tests, L1-torch-compile-tests]
362+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
353363
strategy:
354364
fail-fast: false
355365
matrix:

.github/workflows/build-test-windows.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ jobs:
8888
L0-dynamo-converter-tests:
8989
name: L0 dynamo converter tests
9090
needs: [substitute-runner, build]
91+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
9192
strategy:
9293
fail-fast: false
9394
matrix:
@@ -113,6 +114,7 @@ jobs:
113114
L0-dynamo-core-tests:
114115
name: L0 dynamo core tests
115116
needs: [substitute-runner, build]
117+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
116118
strategy:
117119
fail-fast: false
118120
matrix:
@@ -140,6 +142,7 @@ jobs:
140142
L0-py-core-tests:
141143
name: L0 core python tests
142144
needs: [substitute-runner, build]
145+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
143146
strategy:
144147
fail-fast: false
145148
matrix:
@@ -165,6 +168,7 @@ jobs:
165168
L0-torchscript-tests:
166169
name: L0 torchscript tests
167170
needs: [substitute-runner, build]
171+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
168172
strategy:
169173
fail-fast: false
170174
matrix:
@@ -194,6 +198,7 @@ jobs:
194198
L1-dynamo-core-tests:
195199
name: L1 dynamo core tests
196200
needs: [substitute-runner, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests, L0-torchscript-tests]
201+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
197202
strategy:
198203
fail-fast: false
199204
matrix:
@@ -219,6 +224,7 @@ jobs:
219224
L1-dynamo-compile-tests:
220225
name: L1 dynamo compile tests
221226
needs: [substitute-runner, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests, L0-torchscript-tests]
227+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
222228
strategy:
223229
fail-fast: false
224230
matrix:
@@ -244,6 +250,7 @@ jobs:
244250
L1-torch-compile-tests:
245251
name: L1 torch compile tests
246252
needs: [substitute-runner, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests, L0-torchscript-tests]
253+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
247254
strategy:
248255
fail-fast: false
249256
matrix:
@@ -271,6 +278,7 @@ jobs:
271278
L1-torchscript-tests:
272279
name: L1 torchscript tests
273280
needs: [substitute-runner, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests, L0-torchscript-tests]
281+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
274282
strategy:
275283
fail-fast: false
276284
matrix:
@@ -300,6 +308,7 @@ jobs:
300308
L2-torch-compile-tests:
301309
name: L2 torch compile tests
302310
needs: [substitute-runner, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests, L1-torchscript-tests]
311+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
303312
strategy:
304313
fail-fast: false
305314
matrix:
@@ -326,6 +335,7 @@ jobs:
326335
L2-dynamo-compile-tests:
327336
name: L2 dynamo compile tests
328337
needs: [substitute-runner, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests, L1-torchscript-tests]
338+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
329339
strategy:
330340
fail-fast: false
331341
matrix:
@@ -352,6 +362,7 @@ jobs:
352362
L2-dynamo-core-tests:
353363
name: L2 dynamo core tests
354364
needs: [substitute-runner, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests, L1-torchscript-tests]
365+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
355366
strategy:
356367
fail-fast: false
357368
matrix:
@@ -377,6 +388,7 @@ jobs:
377388
L2-dynamo-plugin-tests:
378389
name: L2 dynamo plugin tests
379390
needs: [substitute-runner, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests, L1-torchscript-tests]
391+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
380392
strategy:
381393
fail-fast: false
382394
matrix:
@@ -402,6 +414,7 @@ jobs:
402414
L2-torchscript-tests:
403415
name: L2 torchscript tests
404416
needs: [substitute-runner, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests, L1-torchscript-tests]
417+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
405418
strategy:
406419
fail-fast: false
407420
matrix:

.github/workflows/build-test-windows_rtx.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ jobs:
9090
L0-dynamo-converter-tests:
9191
name: L0 dynamo converter tests
9292
needs: [substitute-runner, build]
93+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
9394
strategy:
9495
fail-fast: false
9596
matrix:
@@ -116,6 +117,7 @@ jobs:
116117
L0-dynamo-core-tests:
117118
name: L0 dynamo core tests
118119
needs: [substitute-runner, build]
120+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
119121
strategy:
120122
fail-fast: false
121123
matrix:
@@ -144,6 +146,7 @@ jobs:
144146
L0-py-core-tests:
145147
name: L0 core python tests
146148
needs: [substitute-runner, build]
149+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
147150
strategy:
148151
fail-fast: false
149152
matrix:
@@ -167,11 +170,10 @@ jobs:
167170
../../../packaging/vc_env_helper.bat python -m pytest -ra -n 8 --junitxml=${RUNNER_TEST_RESULTS_DIR}/l0_py_core_tests_results.xml .
168171
popd
169172
170-
171-
172173
L1-dynamo-core-tests:
173174
name: L1 dynamo core tests
174175
needs: [substitute-runner, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests]
176+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
175177
strategy:
176178
fail-fast: false
177179
matrix:
@@ -198,6 +200,7 @@ jobs:
198200
L1-dynamo-compile-tests:
199201
name: L1 dynamo compile tests
200202
needs: [substitute-runner, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests]
203+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
201204
strategy:
202205
fail-fast: false
203206
matrix:
@@ -224,6 +227,7 @@ jobs:
224227
L1-torch-compile-tests:
225228
name: L1 torch compile tests
226229
needs: [substitute-runner, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests]
230+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
227231
strategy:
228232
fail-fast: false
229233
matrix:
@@ -252,6 +256,7 @@ jobs:
252256
L2-torch-compile-tests:
253257
name: L2 torch compile tests
254258
needs: [substitute-runner, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests]
259+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
255260
strategy:
256261
fail-fast: false
257262
matrix:
@@ -279,6 +284,7 @@ jobs:
279284
L2-dynamo-compile-tests:
280285
name: L2 dynamo compile tests
281286
needs: [substitute-runner, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests]
287+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
282288
strategy:
283289
fail-fast: false
284290
matrix:
@@ -306,6 +312,7 @@ jobs:
306312
L2-dynamo-core-tests:
307313
name: L2 dynamo core tests
308314
needs: [substitute-runner, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests]
315+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
309316
strategy:
310317
fail-fast: false
311318
matrix:
@@ -332,6 +339,7 @@ jobs:
332339
L2-dynamo-plugin-tests:
333340
name: L2 dynamo plugin tests
334341
needs: [substitute-runner, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests]
342+
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
335343
strategy:
336344
fail-fast: false
337345
matrix:

0 commit comments

Comments
 (0)