Skip to content

Commit c41d5d8

Browse files
committed
ci: Add names to each codecov build
Codecov shows the CI provider, but all jobs are tagged with the overall workflow ID. Passing a name allows differentiating between each build (i.e., Python version and system platform.)
1 parent 05e7644 commit c41d5d8

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ artifacts:
9494

9595
on_finish:
9696
- conda install codecov
97-
- codecov -e PYTHON_VERSION PLATFORM
97+
- codecov -e PYTHON_VERSION PLATFORM -n "$PYTHON_VERSION Windows"
9898

9999
on_failure:
100100
# Generate a html for visual tests

.github/workflows/tests.yml

+2
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,8 @@ jobs:
328328
fi
329329
- name: Upload code coverage
330330
uses: codecov/codecov-action@v3
331+
with:
332+
name: "${{ matrix.python-version }} ${{ matrix.os }} ${{ matrix.name-suffix }}"
331333

332334
- uses: actions/upload-artifact@v3
333335
if: failure()

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ stages:
157157
displayName: 'pytest'
158158
159159
- bash: |
160-
bash <(curl -s https://codecov.io/bash) -f "!*.gcov" -X gcov
160+
bash <(curl -s https://codecov.io/bash) -n "$PYTHON_VERSION $AGENT_OS" -f "!*.gcov" -X gcov
161161
displayName: 'Upload to codecov.io'
162162
163163
- task: PublishTestResults@2

0 commit comments

Comments
 (0)