Skip to content

Commit 68840bf

Browse files
[CI] Made Nightly Tests Continue on Error
Currently, the Nightly Tests will stop whenever any of the Nightly Tests fail (and will not run the following tests). So for example, if Nightly Test 1 has a QoR failure, all other Nightly tests will not be run. Made each step in the Nightly Test manual job continue on error. This will run the following steps even if one of them fail.
1 parent 4c81b1d commit 68840bf

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/nightly_test_manual.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,37 +63,45 @@ jobs:
6363
# TODO: We could expose more parallelism if we had one task list which ran
6464
# all of these.
6565
- name: 'Run Nightly Test 1'
66+
continue-on-error: true
6667
run: |
6768
source .venv/bin/activate
6869
./run_reg_test.py -j12 vtr_reg_nightly_test1
6970
7071
- name: 'Run Nightly Test 2'
72+
continue-on-error: true
7173
run: |
7274
source .venv/bin/activate
7375
./run_reg_test.py -j12 vtr_reg_nightly_test2
7476
7577
- name: 'Run Nightly Test 3'
78+
continue-on-error: true
7679
run: |
7780
source .venv/bin/activate
7881
./run_reg_test.py -j12 vtr_reg_nightly_test3
7982
8083
8184
- name: 'Run Nightly Test 4'
85+
continue-on-error: true
8286
run: |
8387
source .venv/bin/activate
8488
./run_reg_test.py -j12 vtr_reg_nightly_test4
8589
8690
- name: 'Run Nightly Test 5'
91+
continue-on-error: true
8792
run: |
8893
source .venv/bin/activate
8994
./run_reg_test.py -j12 vtr_reg_nightly_test5
9095
9196
- name: 'Run Nightly Test 6'
97+
continue-on-error: true
9298
run: |
9399
source .venv/bin/activate
94100
./run_reg_test.py -j12 vtr_reg_nightly_test6
95101
96102
- name: 'Run Nightly Test 7'
103+
continue-on-error: true
97104
run: |
98105
source .venv/bin/activate
99106
./run_reg_test.py -j12 vtr_reg_nightly_test7
107+

0 commit comments

Comments
 (0)