Skip to content

Commit 8bf9d13

Browse files
committed
try
1 parent 56ec843 commit 8bf9d13

12 files changed

+12
-12
lines changed

.github/workflows/test-integrations-ai.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
name: All pinned AI tests passed
175175
needs: test-ai-pinned
176176
# Always run this, even if a dependent job failed
177-
if: always() || needs.test-ai-pinned.result == null
177+
if: needs.test-ai-pinned.result == null || always()
178178
runs-on: ubuntu-20.04
179179
steps:
180180
- name: Auto-pass for path filtering

.github/workflows/test-integrations-aws.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
name: All pinned AWS tests passed
122122
needs: test-aws-pinned
123123
# Always run this, even if a dependent job failed
124-
if: always() || needs.test-aws-pinned.result == null
124+
if: needs.test-aws-pinned.result == null || always()
125125
runs-on: ubuntu-20.04
126126
steps:
127127
- name: Auto-pass for path filtering

.github/workflows/test-integrations-cloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
name: All pinned Cloud tests passed
167167
needs: test-cloud-pinned
168168
# Always run this, even if a dependent job failed
169-
if: always() || needs.test-cloud-pinned.result == null
169+
if: needs.test-cloud-pinned.result == null || always()
170170
runs-on: ubuntu-20.04
171171
steps:
172172
- name: Auto-pass for path filtering

.github/workflows/test-integrations-common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
name: All pinned Common tests passed
8787
needs: test-common-pinned
8888
# Always run this, even if a dependent job failed
89-
if: always() || needs.test-common-pinned.result == null
89+
if: needs.test-common-pinned.result == null || always()
9090
runs-on: ubuntu-20.04
9191
steps:
9292
- name: Auto-pass for path filtering

.github/workflows/test-integrations-dbs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
name: All pinned DBs tests passed
221221
needs: test-dbs-pinned
222222
# Always run this, even if a dependent job failed
223-
if: always() || needs.test-dbs-pinned.result == null
223+
if: needs.test-dbs-pinned.result == null || always()
224224
runs-on: ubuntu-20.04
225225
steps:
226226
- name: Auto-pass for path filtering

.github/workflows/test-integrations-graphql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
name: All pinned GraphQL tests passed
167167
needs: test-graphql-pinned
168168
# Always run this, even if a dependent job failed
169-
if: always() || needs.test-graphql-pinned.result == null
169+
if: needs.test-graphql-pinned.result == null || always()
170170
runs-on: ubuntu-20.04
171171
steps:
172172
- name: Auto-pass for path filtering

.github/workflows/test-integrations-misc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
name: All pinned Misc tests passed
191191
needs: test-misc-pinned
192192
# Always run this, even if a dependent job failed
193-
if: always() || needs.test-misc-pinned.result == null
193+
if: needs.test-misc-pinned.result == null || always()
194194
runs-on: ubuntu-20.04
195195
steps:
196196
- name: Auto-pass for path filtering

.github/workflows/test-integrations-network.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
name: All pinned Network tests passed
167167
needs: test-network-pinned
168168
# Always run this, even if a dependent job failed
169-
if: always() || needs.test-network-pinned.result == null
169+
if: needs.test-network-pinned.result == null || always()
170170
runs-on: ubuntu-20.04
171171
steps:
172172
- name: Auto-pass for path filtering

.github/workflows/test-integrations-tasks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ jobs:
202202
name: All pinned Tasks tests passed
203203
needs: test-tasks-pinned
204204
# Always run this, even if a dependent job failed
205-
if: always() || needs.test-tasks-pinned.result == null
205+
if: needs.test-tasks-pinned.result == null || always()
206206
runs-on: ubuntu-20.04
207207
steps:
208208
- name: Auto-pass for path filtering

.github/workflows/test-integrations-web-1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ jobs:
202202
name: All pinned Web 1 tests passed
203203
needs: test-web_1-pinned
204204
# Always run this, even if a dependent job failed
205-
if: always() || needs.test-web_1-pinned.result == null
205+
if: needs.test-web_1-pinned.result == null || always()
206206
runs-on: ubuntu-20.04
207207
steps:
208208
- name: Auto-pass for path filtering

.github/workflows/test-integrations-web-2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
name: All pinned Web 2 tests passed
215215
needs: test-web_2-pinned
216216
# Always run this, even if a dependent job failed
217-
if: always() || needs.test-web_2-pinned.result == null
217+
if: needs.test-web_2-pinned.result == null || always()
218218
runs-on: ubuntu-20.04
219219
steps:
220220
- name: Auto-pass for path filtering

scripts/split-tox-gh-actions/templates/check_required.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
needs: test-{{ group | replace(" ", "_") | lower }}-pinned
55
{% endif %}
66
# Always run this, even if a dependent job failed
7-
if: always() || needs.test-{{ lowercase_group }}-pinned.result == null
7+
if: needs.test-{{ lowercase_group }}-pinned.result == null || always()
88
runs-on: ubuntu-20.04
99
steps:
1010
- name: Auto-pass for path filtering

0 commit comments

Comments
 (0)