We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ef1033 commit d21f214Copy full SHA for d21f214
.github/workflows/coverage-check-parallel.yml
@@ -90,6 +90,7 @@ jobs:
90
91
TEST_NAME=$(basename "${{ matrix.test_file }}" .py)
92
COVERAGE_FILE="coverage-${TEST_NAME}-${{ matrix.mode }}.xml"
93
+ echo "TEST_NAME=$TEST_NAME" >> $GITHUB_ENV
94
95
poetry run pytest "${{ matrix.test_file }}" "$TEST_FILTER" "$TEST_EXPRESSION" \
96
--cov=src --cov-report=xml:$COVERAGE_FILE --cov-report=term \
@@ -99,7 +100,7 @@ jobs:
99
100
uses: actions/upload-artifact@v4
101
if: always()
102
with:
- name: coverage-$(basename "${{ matrix.test_file }}" .py)-${{ matrix.mode }}
103
+ name: coverage-${{ env.TEST_NAME }}-${{ matrix.mode }}
104
path: |
105
.coverage
106
coverage-*-${{ matrix.mode }}.xml
0 commit comments