Skip to content

Commit ef80c5e

Browse files
committed
Merge branch 'potel-base' into potel-base-run-all-tests
2 parents d14dd90 + 9a37fca commit ef80c5e

14 files changed

+107
-97
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
coverage xml
7474
- name: Upload coverage to Codecov
7575
if: ${{ !cancelled() }}
76-
uses: codecov/codecov-action@v4.6.0
76+
uses: codecov/codecov-action@v5.0.2
7777
with:
7878
token: ${{ secrets.CODECOV_TOKEN }}
7979
files: coverage.xml
@@ -140,7 +140,7 @@ jobs:
140140
coverage xml
141141
- name: Upload coverage to Codecov
142142
if: ${{ !cancelled() }}
143-
uses: codecov/codecov-action@v4.6.0
143+
uses: codecov/codecov-action@v5.0.2
144144
with:
145145
token: ${{ secrets.CODECOV_TOKEN }}
146146
files: coverage.xml

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

Lines changed: 7 additions & 7 deletions
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:
@@ -88,7 +88,7 @@ jobs:
8888
coverage xml
8989
- name: Upload coverage to Codecov
9090
if: ${{ !cancelled() }}
91-
uses: codecov/codecov-action@v4.6.0
91+
uses: codecov/codecov-action@v5.0.2
9292
with:
9393
token: ${{ secrets.CODECOV_TOKEN }}
9494
files: coverage.xml
@@ -103,13 +103,13 @@ jobs:
103103
files: .junitxml
104104
verbose: true
105105
check_required_tests:
106-
name: All pinned AWS Lambda tests passed
107-
needs: test-aws_lambda-pinned
106+
name: All pinned AWS tests passed
107+
needs: test-aws-pinned
108108
# Always run this, even if a dependent job failed
109109
if: always()
110110
runs-on: ubuntu-20.04
111111
steps:
112112
- name: Check for failures
113-
if: contains(needs.test-aws_lambda-pinned.result, 'failure') || contains(needs.test-aws_lambda-pinned.result, 'skipped')
113+
if: contains(needs.test-aws-pinned.result, 'failure') || contains(needs.test-aws-pinned.result, 'skipped')
114114
run: |
115115
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

Lines changed: 10 additions & 10 deletions
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:
@@ -68,7 +68,7 @@ jobs:
6868
coverage xml
6969
- name: Upload coverage to Codecov
7070
if: ${{ !cancelled() }}
71-
uses: codecov/codecov-action@v4.6.0
71+
uses: codecov/codecov-action@v5.0.2
7272
with:
7373
token: ${{ secrets.CODECOV_TOKEN }}
7474
files: coverage.xml
@@ -82,8 +82,8 @@ jobs:
8282
token: ${{ secrets.CODECOV_TOKEN }}
8383
files: .junitxml
8484
verbose: true
85-
test-cloud_computing-pinned:
86-
name: Cloud Computing (pinned)
85+
test-cloud-pinned:
86+
name: Cloud (pinned)
8787
timeout-minutes: 30
8888
runs-on: ${{ matrix.os }}
8989
strategy:
@@ -130,7 +130,7 @@ jobs:
130130
coverage xml
131131
- name: Upload coverage to Codecov
132132
if: ${{ !cancelled() }}
133-
uses: codecov/codecov-action@v4.6.0
133+
uses: codecov/codecov-action@v5.0.2
134134
with:
135135
token: ${{ secrets.CODECOV_TOKEN }}
136136
files: coverage.xml
@@ -145,13 +145,13 @@ jobs:
145145
files: .junitxml
146146
verbose: true
147147
check_required_tests:
148-
name: All pinned Cloud Computing tests passed
149-
needs: test-cloud_computing-pinned
148+
name: All pinned Cloud tests passed
149+
needs: test-cloud-pinned
150150
# Always run this, even if a dependent job failed
151151
if: always()
152152
runs-on: ubuntu-20.04
153153
steps:
154154
- name: Check for failures
155-
if: contains(needs.test-cloud_computing-pinned.result, 'failure') || contains(needs.test-cloud_computing-pinned.result, 'skipped')
155+
if: contains(needs.test-cloud-pinned.result, 'failure') || contains(needs.test-cloud-pinned.result, 'skipped')
156156
run: |
157157
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
coverage xml
5454
- name: Upload coverage to Codecov
5555
if: ${{ !cancelled() }}
56-
uses: codecov/codecov-action@v4.6.0
56+
uses: codecov/codecov-action@v5.0.2
5757
with:
5858
token: ${{ secrets.CODECOV_TOKEN }}
5959
files: coverage.xml

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

Lines changed: 10 additions & 10 deletions
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:
@@ -97,7 +97,7 @@ jobs:
9797
coverage xml
9898
- name: Upload coverage to Codecov
9999
if: ${{ !cancelled() }}
100-
uses: codecov/codecov-action@v4.6.0
100+
uses: codecov/codecov-action@v5.0.2
101101
with:
102102
token: ${{ secrets.CODECOV_TOKEN }}
103103
files: coverage.xml
@@ -111,8 +111,8 @@ jobs:
111111
token: ${{ secrets.CODECOV_TOKEN }}
112112
files: .junitxml
113113
verbose: true
114-
test-databases-pinned:
115-
name: Databases (pinned)
114+
test-dbs-pinned:
115+
name: DBs (pinned)
116116
timeout-minutes: 30
117117
runs-on: ${{ matrix.os }}
118118
strategy:
@@ -188,7 +188,7 @@ jobs:
188188
coverage xml
189189
- name: Upload coverage to Codecov
190190
if: ${{ !cancelled() }}
191-
uses: codecov/codecov-action@v4.6.0
191+
uses: codecov/codecov-action@v5.0.2
192192
with:
193193
token: ${{ secrets.CODECOV_TOKEN }}
194194
files: coverage.xml
@@ -203,13 +203,13 @@ jobs:
203203
files: .junitxml
204204
verbose: true
205205
check_required_tests:
206-
name: All pinned Databases tests passed
207-
needs: test-databases-pinned
206+
name: All pinned DBs tests passed
207+
needs: test-dbs-pinned
208208
# Always run this, even if a dependent job failed
209209
if: always()
210210
runs-on: ubuntu-20.04
211211
steps:
212212
- name: Check for failures
213-
if: contains(needs.test-databases-pinned.result, 'failure') || contains(needs.test-databases-pinned.result, 'skipped')
213+
if: contains(needs.test-dbs-pinned.result, 'failure') || contains(needs.test-dbs-pinned.result, 'skipped')
214214
run: |
215215
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
coverage xml
6969
- name: Upload coverage to Codecov
7070
if: ${{ !cancelled() }}
71-
uses: codecov/codecov-action@v4.6.0
71+
uses: codecov/codecov-action@v5.0.2
7272
with:
7373
token: ${{ secrets.CODECOV_TOKEN }}
7474
files: coverage.xml
@@ -130,7 +130,7 @@ jobs:
130130
coverage xml
131131
- name: Upload coverage to Codecov
132132
if: ${{ !cancelled() }}
133-
uses: codecov/codecov-action@v4.6.0
133+
uses: codecov/codecov-action@v5.0.2
134134
with:
135135
token: ${{ secrets.CODECOV_TOKEN }}
136136
files: coverage.xml

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

Lines changed: 10 additions & 10 deletions
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:
@@ -83,7 +83,7 @@ jobs:
8383
coverage xml
8484
- name: Upload coverage to Codecov
8585
if: ${{ !cancelled() }}
86-
uses: codecov/codecov-action@v4.6.0
86+
uses: codecov/codecov-action@v5.0.2
8787
with:
8888
token: ${{ secrets.CODECOV_TOKEN }}
8989
files: coverage.xml
@@ -97,8 +97,8 @@ jobs:
9797
token: ${{ secrets.CODECOV_TOKEN }}
9898
files: .junitxml
9999
verbose: true
100-
test-miscellaneous-pinned:
101-
name: Miscellaneous (pinned)
100+
test-misc-pinned:
101+
name: Misc (pinned)
102102
timeout-minutes: 30
103103
runs-on: ${{ matrix.os }}
104104
strategy:
@@ -160,7 +160,7 @@ jobs:
160160
coverage xml
161161
- name: Upload coverage to Codecov
162162
if: ${{ !cancelled() }}
163-
uses: codecov/codecov-action@v4.6.0
163+
uses: codecov/codecov-action@v5.0.2
164164
with:
165165
token: ${{ secrets.CODECOV_TOKEN }}
166166
files: coverage.xml
@@ -175,13 +175,13 @@ jobs:
175175
files: .junitxml
176176
verbose: true
177177
check_required_tests:
178-
name: All pinned Miscellaneous tests passed
179-
needs: test-miscellaneous-pinned
178+
name: All pinned Misc tests passed
179+
needs: test-misc-pinned
180180
# Always run this, even if a dependent job failed
181181
if: always()
182182
runs-on: ubuntu-20.04
183183
steps:
184184
- name: Check for failures
185-
if: contains(needs.test-miscellaneous-pinned.result, 'failure') || contains(needs.test-miscellaneous-pinned.result, 'skipped')
185+
if: contains(needs.test-misc-pinned.result, 'failure') || contains(needs.test-misc-pinned.result, 'skipped')
186186
run: |
187187
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

Lines changed: 10 additions & 10 deletions
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:
@@ -68,7 +68,7 @@ jobs:
6868
coverage xml
6969
- name: Upload coverage to Codecov
7070
if: ${{ !cancelled() }}
71-
uses: codecov/codecov-action@v4.6.0
71+
uses: codecov/codecov-action@v5.0.2
7272
with:
7373
token: ${{ secrets.CODECOV_TOKEN }}
7474
files: coverage.xml
@@ -82,8 +82,8 @@ jobs:
8282
token: ${{ secrets.CODECOV_TOKEN }}
8383
files: .junitxml
8484
verbose: true
85-
test-networking-pinned:
86-
name: Networking (pinned)
85+
test-network-pinned:
86+
name: Network (pinned)
8787
timeout-minutes: 30
8888
runs-on: ${{ matrix.os }}
8989
strategy:
@@ -130,7 +130,7 @@ jobs:
130130
coverage xml
131131
- name: Upload coverage to Codecov
132132
if: ${{ !cancelled() }}
133-
uses: codecov/codecov-action@v4.6.0
133+
uses: codecov/codecov-action@v5.0.2
134134
with:
135135
token: ${{ secrets.CODECOV_TOKEN }}
136136
files: coverage.xml
@@ -145,13 +145,13 @@ jobs:
145145
files: .junitxml
146146
verbose: true
147147
check_required_tests:
148-
name: All pinned Networking tests passed
149-
needs: test-networking-pinned
148+
name: All pinned Network tests passed
149+
needs: test-network-pinned
150150
# Always run this, even if a dependent job failed
151151
if: always()
152152
runs-on: ubuntu-20.04
153153
steps:
154154
- name: Check for failures
155-
if: contains(needs.test-networking-pinned.result, 'failure') || contains(needs.test-networking-pinned.result, 'skipped')
155+
if: contains(needs.test-network-pinned.result, 'failure') || contains(needs.test-network-pinned.result, 'skipped')
156156
run: |
157157
echo "One of the dependent jobs has failed. You may need to re-run it." && exit 1

0 commit comments

Comments
 (0)