We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49074d3 commit 332f096Copy full SHA for 332f096
.github/workflows/build_test.yml
@@ -42,20 +42,10 @@ jobs:
42
43
- name: Run tests with coverage
44
if: matrix.python-version == '3.12'
45
- run: |
46
- pip install coverage
47
- coverage run --source=essos -m pytest .
48
- coverage report
49
- coverage xml
+ run: pytest --cov essos
50
51
- name: Upload coverage reports to Codecov
52
if: github.repository_owner == 'uwplasma' && matrix.python-version == '3.12'
53
uses: codecov/codecov-action@v5
54
with:
55
- token: ${{ secrets.CODECOV_TOKEN }}
56
- files: ./coverage.xml
57
- flags: unittests
58
- env_vars: PYTHON
59
- name: codecov-umbrella
60
- fail_ci_if_error: true
61
- verbose: true
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments