diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-11-11 10:46:47 +0000 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-11-11 10:46:47 +0000 |
commit | 8233377eb40137c5198a9dbeda324429ba4c68e9 (patch) | |
tree | b53dbc65016e3e3b910de20c6277b869c6f7b67f | |
parent | 74c88c13845176464e19d1751cf465bd91450dc4 (diff) | |
parent | 3b8ad842884b8b29a7117ab9a366e1cf4de0b8ad (diff) | |
download | python-setuptools-git-8233377eb40137c5198a9dbeda324429ba4c68e9.tar.gz |
Upload accurate coverage flags from unit tests job (#3641)
-rw-r--r-- | .github/workflows/main.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f63bb077..4560939f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -70,6 +70,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup Python + id: python-install uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }}${{ matrix.dev }} @@ -97,8 +98,11 @@ jobs: uses: codecov/codecov-action@v3 with: flags: >- # Mark which lines are covered by which envs - ${{ runner.os }}, - ${{ matrix.python }} + CI-GHA, + ${{ github.job }}, + OS-${{ runner.os }}, + VM-${{ matrix.platform }}, + Py-${{ steps.python-install.outputs.python-version }} check: # This job does nothing and is only used for the branch protection if: always() |