Skip to content

Commit

Permalink
Store coverage results separately for each os and python version
Browse files Browse the repository at this point in the history
  • Loading branch information
radovanZRasa committed Dec 12, 2024
1 parent e5d42e5 commit 83cfbf9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,9 @@ jobs:
if: needs.changes.outputs.backend == 'true' && matrix.os == 'ubuntu-22.04'
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 #v4.4.3
with:
name: ${{ matrix.test }}-coverage
name: ${{ matrix.test }}-${{ matrix.python-version }}-${{ matrix.os }}-coverage
path: |
${{ github.workspace }}/${{ matrix.test }}-coverage
${{ github.workspace }}/${{ matrix.test }}-${{ matrix.python-version }}-${{ matrix.os }}-coverage
test-flaky:
name: Run Flaky Tests
Expand Down Expand Up @@ -543,9 +543,9 @@ jobs:
if: needs.changes.outputs.backend == 'true' && matrix.os == 'ubuntu-22.04'
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 #v4.4.3
with:
name: ${{ matrix.test }}-coverage
name: ${{ matrix.test }}-${{ matrix.python-version }}-${{ matrix.os }}-coverage
path: |
${{ github.workspace }}/${{ matrix.test }}-coverage
${{ github.workspace }}/${{ matrix.test }}-${{ matrix.python-version }}-${{ matrix.os }}-coverage
upload_coverage_reports:
name: Upload coverage reports to codeclimate
Expand Down

0 comments on commit 83cfbf9

Please sign in to comment.