Skip to content

Commit 7758cad

Browse files
authored
fix: test results (#526)
1 parent 164bef4 commit 7758cad

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/integration_tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
python-version: [ "3.8", "3.11" ]
17-
engine_version: ["lts", "latest"]
17+
engine-version: [ "lts", "latest"]
1818
environment: ["mysql", "pg"]
1919

2020
steps:
@@ -65,11 +65,13 @@ jobs:
6565
AWS_ACCESS_KEY_ID: ${{ env.TEMP_AWS_ACCESS_KEY_ID }}
6666
AWS_SECRET_ACCESS_KEY: ${{ env.TEMP_AWS_SECRET_ACCESS_KEY }}
6767
AWS_SESSION_TOKEN: ${{ env.TEMP_AWS_SESSION_TOKEN }}
68+
AURORA_MYSQL_DB_ENGINE_VERSION: ${{ matrix.engine-version }}
69+
AURORA_PG_ENGINE_VERSION: ${{ matrix.engine-version }}
6870

6971
- name: 'Archive results'
7072
if: always()
7173
uses: actions/upload-artifact@v4
7274
with:
73-
name: pytest-integration-report
75+
name: pytest-integration-report-${{ matrix.python-version }}-${{ matrix.environment }}-${{ matrix.engine-version }}
7476
path: ./tests/integration/container/reports
7577
retention-days: 5

.github/workflows/integration_tests_codebuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ jobs:
7171
if: always()
7272
uses: actions/upload-artifact@v4
7373
with:
74-
name: pytest-integration-report
74+
name: pytest-integration-report-${{ matrix.python-version }}-${{ matrix.environment }}
7575
path: ./tests/integration/container/reports
7676
retention-days: 5

0 commit comments

Comments
 (0)