Skip to content

Commit 8acd951

Browse files
authored
Correct artifact csv name (#2516)
1 parent 0078967 commit 8acd951

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/run_tests_in_tox.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ on:
3030
artifact-prefix:
3131
type: string
3232
default: "test-results"
33+
toxenv-ptver:
34+
type: string
35+
default: "pt1"
3336
jobs:
3437
run_tests_in_tox:
3538
# tricky workaround to pass list from the string input type
@@ -45,14 +48,14 @@ jobs:
4548
python-version: ${{ inputs.python-version }}
4649
- name: Install dependencies
4750
run: python -m pip install -r requirements/dev.txt
48-
- name: E2E Tests
49-
run: tox -vv -e tests-${{ inputs.toxenv-task }}-${{ inputs.toxenv-pyver }}-pt1 -- ${{ inputs.tests-dir }}
51+
- name: Run Tests
52+
run: tox -vv -e tests-${{ inputs.toxenv-task }}-${{ inputs.toxenv-pyver }}-${{ inputs.toxenv-ptver }} -- ${{ inputs.tests-dir }}
5053
- name: Upload test results
5154
uses: actions/upload-artifact@v3
5255
with:
53-
name: ${{ inputs.artifact-prefix }}-${{ inputs.toxenv-task }}-${{ inputs.toxenv-pyver }}
56+
name: ${{ inputs.artifact-prefix }}-${{ inputs.toxenv-task }}-${{ inputs.toxenv-pyver }}-${{ inputs.toxenv-ptver }}
5457
path: |
55-
.tox/tests-${{ inputs.toxenv-task }}-${{ inputs.toxenv-pyver }}.csv
58+
.tox/tests-${{ inputs.toxenv-task }}-${{ inputs.toxenv-pyver }}-${{ inputs.toxenv-ptver }}.csv
5659
.tox/tests-reg_${{ inputs.task }}_*.csv
5760
.tox/tests-reg_tiling_${{ inputs.task }}_*.csv
5861
# Use always() to always run this step to publish test results when there are test failures

0 commit comments

Comments
 (0)