Skip to content

Commit

Permalink
code cov please work
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurmloureiro committed Dec 5, 2023
1 parent af288fb commit 01b66f9
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,15 @@ jobs:
# Perform the unit test and outputs a coverage report
- name: Test with pytest
run: pytest --cov=legacy_blinding -r json-summary --cov-report xml ./tests
run: pytest --cov=legacy_blinding --cov-report=xml ./tests

# Uploads the code coverage results to codecov.io
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.9"
# - run: pip install ".[test]" pytest-cov
# - run: pytest --cov=legacy_blinding --cov-report=xml
- uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 01b66f9

Please sign in to comment.