Skip to content

Commit

Permalink
ci: avoid saving unuseful artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Egon Ferri committed Jul 24, 2024
1 parent 0b2fe74 commit 78f2bc9
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,5 @@ jobs:
- name: Run tests
run: |
source venv/bin/activate
pytest --junitxml=report.xml --cov --cov-report=xml
pytest --cov
continue-on-error: true

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-report
path: report.xml

- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage.xml

0 comments on commit 78f2bc9

Please sign in to comment.