Skip to content

Commit

Permalink
Trying to download all and merge to workspace folder
Browse files Browse the repository at this point in the history
  • Loading branch information
casabre committed Feb 1, 2024
1 parent 51cb069 commit cde155c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- "main"

jobs:
# Test all other supported Python version
testing-py3xx:
strategy:
fail-fast: true
Expand Down Expand Up @@ -35,6 +36,8 @@ jobs:
check_name: Test Report (${{ matrix.os }}, ${{ matrix.python }})
report_paths: "**/results.xml"
detailed_summary: true

# Testing with Python 3.11 and coverage file artifacts
testing:
strategy:
fail-fast: false
Expand Down Expand Up @@ -71,6 +74,8 @@ jobs:
name: coverage-${{ matrix.python }}-${{ matrix.os }}${{ matrix.tests }}
path: "${{ github.workspace }}/.coverage*"
retention-days: 1

# Collectiong and combining all coverage files
coverage:
needs: [testing]
strategy:
Expand All @@ -85,7 +90,7 @@ jobs:
- name: Download coverage for testing
uses: actions/download-artifact@v4
with:
name: coverage*
merge-multiple: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit cde155c

Please sign in to comment.