Skip to content

Commit d894fc2

Browse files
authored
Shorten CI workflow names (#3805)
Getting around a GH UI issue where you can't see the whole name of the test that failed
1 parent 1bd744d commit d894fc2

9 files changed

+70
-70
lines changed

.github/workflows/test-integrations-aws-lambda.yml renamed to .github/workflows/test-integrations-aws.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test AWS Lambda
3+
name: Test AWS
44
on:
55
push:
66
branches:
@@ -52,8 +52,8 @@ jobs:
5252
- name: Check permissions on repo branch
5353
if: github.event_name == 'push'
5454
run: true
55-
test-aws_lambda-pinned:
56-
name: AWS Lambda (pinned)
55+
test-aws-pinned:
56+
name: AWS (pinned)
5757
timeout-minutes: 30
5858
runs-on: ${{ matrix.os }}
5959
strategy:
@@ -112,13 +112,13 @@ jobs:
112112
files: .junitxml
113113
verbose: true
114114
check_required_tests:
115-
name: All pinned AWS Lambda tests passed
116-
needs: test-aws_lambda-pinned
115+
name: All pinned AWS tests passed
116+
needs: test-aws-pinned
117117
# Always run this, even if a dependent job failed
118118
if: always()
119119
runs-on: ubuntu-20.04
120120
steps:
121121
- name: Check for failures
122-
if: contains(needs.test-aws_lambda-pinned.result, 'failure') || contains(needs.test-aws_lambda-pinned.result, 'skipped')
122+
if: contains(needs.test-aws-pinned.result, 'failure') || contains(needs.test-aws-pinned.result, 'skipped')
123123
run: |
124124
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-cloud-computing.yml renamed to .github/workflows/test-integrations-cloud.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test Cloud Computing
3+
name: Test Cloud
44
on:
55
push:
66
branches:
@@ -20,8 +20,8 @@ env:
2020
CACHED_BUILD_PATHS: |
2121
${{ github.workspace }}/dist-serverless
2222
jobs:
23-
test-cloud_computing-latest:
24-
name: Cloud Computing (latest)
23+
test-cloud-latest:
24+
name: Cloud (latest)
2525
timeout-minutes: 30
2626
runs-on: ${{ matrix.os }}
2727
strategy:
@@ -88,8 +88,8 @@ jobs:
8888
token: ${{ secrets.CODECOV_TOKEN }}
8989
files: .junitxml
9090
verbose: true
91-
test-cloud_computing-pinned:
92-
name: Cloud Computing (pinned)
91+
test-cloud-pinned:
92+
name: Cloud (pinned)
9393
timeout-minutes: 30
9494
runs-on: ${{ matrix.os }}
9595
strategy:
@@ -157,13 +157,13 @@ jobs:
157157
files: .junitxml
158158
verbose: true
159159
check_required_tests:
160-
name: All pinned Cloud Computing tests passed
161-
needs: test-cloud_computing-pinned
160+
name: All pinned Cloud tests passed
161+
needs: test-cloud-pinned
162162
# Always run this, even if a dependent job failed
163163
if: always()
164164
runs-on: ubuntu-20.04
165165
steps:
166166
- name: Check for failures
167-
if: contains(needs.test-cloud_computing-pinned.result, 'failure') || contains(needs.test-cloud_computing-pinned.result, 'skipped')
167+
if: contains(needs.test-cloud-pinned.result, 'failure') || contains(needs.test-cloud-pinned.result, 'skipped')
168168
run: |
169169
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-databases.yml renamed to .github/workflows/test-integrations-dbs.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test Databases
3+
name: Test DBs
44
on:
55
push:
66
branches:
@@ -20,8 +20,8 @@ env:
2020
CACHED_BUILD_PATHS: |
2121
${{ github.workspace }}/dist-serverless
2222
jobs:
23-
test-databases-latest:
24-
name: Databases (latest)
23+
test-dbs-latest:
24+
name: DBs (latest)
2525
timeout-minutes: 30
2626
runs-on: ${{ matrix.os }}
2727
strategy:
@@ -115,8 +115,8 @@ jobs:
115115
token: ${{ secrets.CODECOV_TOKEN }}
116116
files: .junitxml
117117
verbose: true
118-
test-databases-pinned:
119-
name: Databases (pinned)
118+
test-dbs-pinned:
119+
name: DBs (pinned)
120120
timeout-minutes: 30
121121
runs-on: ${{ matrix.os }}
122122
strategy:
@@ -211,13 +211,13 @@ jobs:
211211
files: .junitxml
212212
verbose: true
213213
check_required_tests:
214-
name: All pinned Databases tests passed
215-
needs: test-databases-pinned
214+
name: All pinned DBs tests passed
215+
needs: test-dbs-pinned
216216
# Always run this, even if a dependent job failed
217217
if: always()
218218
runs-on: ubuntu-20.04
219219
steps:
220220
- name: Check for failures
221-
if: contains(needs.test-databases-pinned.result, 'failure') || contains(needs.test-databases-pinned.result, 'skipped')
221+
if: contains(needs.test-dbs-pinned.result, 'failure') || contains(needs.test-dbs-pinned.result, 'skipped')
222222
run: |
223223
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-miscellaneous.yml renamed to .github/workflows/test-integrations-misc.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test Miscellaneous
3+
name: Test Misc
44
on:
55
push:
66
branches:
@@ -20,8 +20,8 @@ env:
2020
CACHED_BUILD_PATHS: |
2121
${{ github.workspace }}/dist-serverless
2222
jobs:
23-
test-miscellaneous-latest:
24-
name: Miscellaneous (latest)
23+
test-misc-latest:
24+
name: Misc (latest)
2525
timeout-minutes: 30
2626
runs-on: ${{ matrix.os }}
2727
strategy:
@@ -100,8 +100,8 @@ jobs:
100100
token: ${{ secrets.CODECOV_TOKEN }}
101101
files: .junitxml
102102
verbose: true
103-
test-miscellaneous-pinned:
104-
name: Miscellaneous (pinned)
103+
test-misc-pinned:
104+
name: Misc (pinned)
105105
timeout-minutes: 30
106106
runs-on: ${{ matrix.os }}
107107
strategy:
@@ -181,13 +181,13 @@ jobs:
181181
files: .junitxml
182182
verbose: true
183183
check_required_tests:
184-
name: All pinned Miscellaneous tests passed
185-
needs: test-miscellaneous-pinned
184+
name: All pinned Misc tests passed
185+
needs: test-misc-pinned
186186
# Always run this, even if a dependent job failed
187187
if: always()
188188
runs-on: ubuntu-20.04
189189
steps:
190190
- name: Check for failures
191-
if: contains(needs.test-miscellaneous-pinned.result, 'failure') || contains(needs.test-miscellaneous-pinned.result, 'skipped')
191+
if: contains(needs.test-misc-pinned.result, 'failure') || contains(needs.test-misc-pinned.result, 'skipped')
192192
run: |
193193
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-networking.yml renamed to .github/workflows/test-integrations-network.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test Networking
3+
name: Test Network
44
on:
55
push:
66
branches:
@@ -20,8 +20,8 @@ env:
2020
CACHED_BUILD_PATHS: |
2121
${{ github.workspace }}/dist-serverless
2222
jobs:
23-
test-networking-latest:
24-
name: Networking (latest)
23+
test-network-latest:
24+
name: Network (latest)
2525
timeout-minutes: 30
2626
runs-on: ${{ matrix.os }}
2727
strategy:
@@ -88,8 +88,8 @@ jobs:
8888
token: ${{ secrets.CODECOV_TOKEN }}
8989
files: .junitxml
9090
verbose: true
91-
test-networking-pinned:
92-
name: Networking (pinned)
91+
test-network-pinned:
92+
name: Network (pinned)
9393
timeout-minutes: 30
9494
runs-on: ${{ matrix.os }}
9595
strategy:
@@ -157,13 +157,13 @@ jobs:
157157
files: .junitxml
158158
verbose: true
159159
check_required_tests:
160-
name: All pinned Networking tests passed
161-
needs: test-networking-pinned
160+
name: All pinned Network tests passed
161+
needs: test-network-pinned
162162
# Always run this, even if a dependent job failed
163163
if: always()
164164
runs-on: ubuntu-20.04
165165
steps:
166166
- name: Check for failures
167-
if: contains(needs.test-networking-pinned.result, 'failure') || contains(needs.test-networking-pinned.result, 'skipped')
167+
if: contains(needs.test-network-pinned.result, 'failure') || contains(needs.test-network-pinned.result, 'skipped')
168168
run: |
169169
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-data-processing.yml renamed to .github/workflows/test-integrations-tasks.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test Data Processing
3+
name: Test Tasks
44
on:
55
push:
66
branches:
@@ -20,8 +20,8 @@ env:
2020
CACHED_BUILD_PATHS: |
2121
${{ github.workspace }}/dist-serverless
2222
jobs:
23-
test-data_processing-latest:
24-
name: Data Processing (latest)
23+
test-tasks-latest:
24+
name: Tasks (latest)
2525
timeout-minutes: 30
2626
runs-on: ${{ matrix.os }}
2727
strategy:
@@ -106,8 +106,8 @@ jobs:
106106
token: ${{ secrets.CODECOV_TOKEN }}
107107
files: .junitxml
108108
verbose: true
109-
test-data_processing-pinned:
110-
name: Data Processing (pinned)
109+
test-tasks-pinned:
110+
name: Tasks (pinned)
111111
timeout-minutes: 30
112112
runs-on: ${{ matrix.os }}
113113
strategy:
@@ -193,13 +193,13 @@ jobs:
193193
files: .junitxml
194194
verbose: true
195195
check_required_tests:
196-
name: All pinned Data Processing tests passed
197-
needs: test-data_processing-pinned
196+
name: All pinned Tasks tests passed
197+
needs: test-tasks-pinned
198198
# Always run this, even if a dependent job failed
199199
if: always()
200200
runs-on: ubuntu-20.04
201201
steps:
202202
- name: Check for failures
203-
if: contains(needs.test-data_processing-pinned.result, 'failure') || contains(needs.test-data_processing-pinned.result, 'skipped')
203+
if: contains(needs.test-tasks-pinned.result, 'failure') || contains(needs.test-tasks-pinned.result, 'skipped')
204204
run: |
205205
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-web-frameworks-1.yml renamed to .github/workflows/test-integrations-web-1.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test Web Frameworks 1
3+
name: Test Web 1
44
on:
55
push:
66
branches:
@@ -20,8 +20,8 @@ env:
2020
CACHED_BUILD_PATHS: |
2121
${{ github.workspace }}/dist-serverless
2222
jobs:
23-
test-web_frameworks_1-latest:
24-
name: Web Frameworks 1 (latest)
23+
test-web_1-latest:
24+
name: Web 1 (latest)
2525
timeout-minutes: 30
2626
runs-on: ${{ matrix.os }}
2727
strategy:
@@ -106,8 +106,8 @@ jobs:
106106
token: ${{ secrets.CODECOV_TOKEN }}
107107
files: .junitxml
108108
verbose: true
109-
test-web_frameworks_1-pinned:
110-
name: Web Frameworks 1 (pinned)
109+
test-web_1-pinned:
110+
name: Web 1 (pinned)
111111
timeout-minutes: 30
112112
runs-on: ${{ matrix.os }}
113113
strategy:
@@ -193,13 +193,13 @@ jobs:
193193
files: .junitxml
194194
verbose: true
195195
check_required_tests:
196-
name: All pinned Web Frameworks 1 tests passed
197-
needs: test-web_frameworks_1-pinned
196+
name: All pinned Web 1 tests passed
197+
needs: test-web_1-pinned
198198
# Always run this, even if a dependent job failed
199199
if: always()
200200
runs-on: ubuntu-20.04
201201
steps:
202202
- name: Check for failures
203-
if: contains(needs.test-web_frameworks_1-pinned.result, 'failure') || contains(needs.test-web_frameworks_1-pinned.result, 'skipped')
203+
if: contains(needs.test-web_1-pinned.result, 'failure') || contains(needs.test-web_1-pinned.result, 'skipped')
204204
run: |
205205
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

.github/workflows/test-integrations-web-frameworks-2.yml renamed to .github/workflows/test-integrations-web-2.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file. This file is generated automatically by executing
22
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
3-
name: Test Web Frameworks 2
3+
name: Test Web 2
44
on:
55
push:
66
branches:
@@ -20,8 +20,8 @@ env:
2020
CACHED_BUILD_PATHS: |
2121
${{ github.workspace }}/dist-serverless
2222
jobs:
23-
test-web_frameworks_2-latest:
24-
name: Web Frameworks 2 (latest)
23+
test-web_2-latest:
24+
name: Web 2 (latest)
2525
timeout-minutes: 30
2626
runs-on: ${{ matrix.os }}
2727
strategy:
@@ -112,8 +112,8 @@ jobs:
112112
token: ${{ secrets.CODECOV_TOKEN }}
113113
files: .junitxml
114114
verbose: true
115-
test-web_frameworks_2-pinned:
116-
name: Web Frameworks 2 (pinned)
115+
test-web_2-pinned:
116+
name: Web 2 (pinned)
117117
timeout-minutes: 30
118118
runs-on: ${{ matrix.os }}
119119
strategy:
@@ -205,13 +205,13 @@ jobs:
205205
files: .junitxml
206206
verbose: true
207207
check_required_tests:
208-
name: All pinned Web Frameworks 2 tests passed
209-
needs: test-web_frameworks_2-pinned
208+
name: All pinned Web 2 tests passed
209+
needs: test-web_2-pinned
210210
# Always run this, even if a dependent job failed
211211
if: always()
212212
runs-on: ubuntu-20.04
213213
steps:
214214
- name: Check for failures
215-
if: contains(needs.test-web_frameworks_2-pinned.result, 'failure') || contains(needs.test-web_frameworks_2-pinned.result, 'skipped')
215+
if: contains(needs.test-web_2-pinned.result, 'failure') || contains(needs.test-web_2-pinned.result, 'skipped')
216216
run: |
217217
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

0 commit comments

Comments
 (0)