Skip to content

Commit

Permalink
changes paths based on local experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
edgararuiz committed Oct 16, 2024
1 parent f51951d commit 3cf7862
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/python-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,16 @@ jobs:
pip install -r python/requirements.txt
- name: Generate coverage report
run: |
pytest --cov=python --cov-report=xml
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
directory: python/coverage/reports/
directory: ./coverage/reports/
env_vars: OS,PYTHON
fail_ci_if_error: true
files: python/coverage1.xml,python/coverage2.xml,!python/cache
files: ./coverage1.xml,./coverage2.xml,!./cache
flags: unittests
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

0 comments on commit 3cf7862

Please sign in to comment.