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 332f096 commit c3b94feCopy full SHA for c3b94fe
.github/workflows/build_test.yml
@@ -41,11 +41,11 @@ jobs:
41
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude=examples_old
42
43
- name: Run tests with coverage
44
- if: matrix.python-version == '3.12'
45
- run: pytest --cov essos
+ run: |
+ pytest --cov-branch --cov-report=xml --cov=essos
46
47
- name: Upload coverage reports to Codecov
48
- if: github.repository_owner == 'uwplasma' && matrix.python-version == '3.12'
49
uses: codecov/codecov-action@v5
50
with:
51
- token: ${{ secrets.CODECOV_TOKEN }}
+ token: ${{ secrets.CODECOV_TOKEN }}
+ slug: uwplasma/ESSOS
0 commit comments