From a8a418cd7a7179c69eb37048d11bb7cdde4af7d7 Mon Sep 17 00:00:00 2001 From: Alec Delaney Date: Wed, 21 Feb 2024 21:46:02 -0500 Subject: [PATCH] Specify os in report filename --- .github/workflows/push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 3284729..09ca026 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -44,14 +44,14 @@ jobs: make test - name: Create coverage.py XML report run: | - coverage xml -o coverage_${{ matrix.py-version }}.xml + coverage xml -o coverage_${{ matrix.os }}_${{ matrix.py-version }}.xml - name: Upload coverage report to Codecov uses: codecov/codecov-action@v4.0.1 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true file: coverage_${{ matrix.py-version }}.xml - flags: "py-${{ matrix.py-version }}" + flags: "${{ matrix.os }}py-${{ matrix.py-version }}" - name: Test packaging run: | python -m build