Skip to content

Commit 037443e

Browse files
use the Python version from .tool-versions. rename to take out the redundant word "run"
1 parent ec23a4d commit 037443e

5 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/cicd-2-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
regression_tests:
135135
needs: publish
136136
name: Regression Tests
137-
uses: ./.github/workflows/run-regression-tests.yml
137+
uses: ./.github/workflows/regression-tests.yml
138138
with:
139139
ENVIRONMENT: "dev"
140140
VERSION_NUMBER: "main"

.github/workflows/cicd-3-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
regression_tests:
133133
# needs: deploy
134134
name: Regression Tests
135-
uses: ./.github/workflows/run-regression-tests.yml
135+
uses: ./.github/workflows/regression-tests.yml
136136
with:
137137
ENVIRONMENT: "test"
138138
VERSION_NUMBER: "main"

.github/workflows/cicd-3-test_auto.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
regression_tests:
107107
needs: deploy
108108
name: Regression Tests
109-
uses: ./.github/workflows/run-regression-tests.yml
109+
uses: ./.github/workflows/regression-tests.yml
110110
with:
111111
ENVIRONMENT: "test"
112112
VERSION_NUMBER: "main"

.github/workflows/cicd-4a-preprod-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
regression_tests:
3535
needs: call
3636
name: Regression Tests
37-
uses: ./.github/workflows/run-regression-tests.yml
37+
uses: ./.github/workflows/regression-tests.yml
3838
with:
3939
ENVIRONMENT: "pre-prod"
4040
VERSION_NUMBER: "main"

.github/workflows/run-regression-tests.yml renamed to .github/workflows/regression-tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run Regression Tests
1+
name: E2E Regression Tests
22

33
on:
44
workflow_call:
@@ -13,7 +13,7 @@ on:
1313
type: string
1414

1515
jobs:
16-
run_regression_tests:
16+
regression-tests:
1717
runs-on: ubuntu-22.04
1818
environment: ${{ inputs.ENVIRONMENT }}
1919
permissions:
@@ -64,7 +64,6 @@ jobs:
6464
TARGET_ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
6565
VERSION_NUMBER: ${{ inputs.VERSION_NUMBER }}
6666
TESTS_TOKEN: ${{ secrets.REGRESSION_TESTS_PAT }}
67-
# GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
6867
run: |
6968
echo Running regression tests in the "$TARGET_ENVIRONMENT" environment.
7069
poetry run python run_regression_tests.py \

0 commit comments

Comments
 (0)