File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -58,14 +58,16 @@ jobs:
58
58
list_tests : " [^(TestAccTFESAMLSettings_omnibus|TestAcc.*_RunDependent)]"
59
59
60
60
run-dependent-tests :
61
- name : run
61
+ name : run-dependent-tests
62
+ needs :
63
+ - tests
62
64
runs-on : ubuntu-latest
63
65
timeout-minutes : 40
64
66
strategy :
65
67
fail-fast : false
66
68
matrix :
67
69
# If you adjust these parameters, also adjust the jrm input files on the "Merge reports" step below
68
- total : [ 1 ]
70
+ total : [ 6 ]
69
71
index : [ 5 ]
70
72
steps :
71
73
- name : Fetch Outputs
@@ -100,7 +102,9 @@ jobs:
100
102
101
103
tests-combine-summaries :
102
104
name : Combine Test Reports
103
- needs : [ tests ]
105
+ needs :
106
+ - tests
107
+ - run-dependent-tests
104
108
runs-on : ubuntu-latest
105
109
steps :
106
110
- uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
@@ -124,7 +128,9 @@ jobs:
124
128
125
129
tests-summarize :
126
130
name : Summarize Tests
127
- needs : [ tests ]
131
+ needs :
132
+ - tests
133
+ - run-dependent-tests
128
134
runs-on : ubuntu-latest
129
135
if : ${{ always() }}
130
136
steps :
You can’t perform that action at this time.
0 commit comments