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 c93fb3c commit 5ea6af6Copy full SHA for 5ea6af6
.github/workflows/continuous-integration.yml
@@ -42,7 +42,7 @@ jobs:
42
- name: Install dependencies
43
run: |
44
python -m pip install --upgrade pip
45
- pip install flake8 pytest
+ pip install flake8 pytest pytest-cov
46
pip install -r requirements.txt -r dev_requirements.txt --timeout 45
47
- name: Lint with flake8
48
@@ -53,6 +53,11 @@ jobs:
53
- name: Test with pytest
54
55
pytest tests/
56
+ pytest --cov --cov-report=xml
57
+ - name: Upload results to Codecov
58
+ uses: codecov/codecov-action@v5
59
+ with:
60
+ token: ${{ secrets.CODECOV_TOKEN }}
61
62
build-windows:
63
runs-on: windows-latest
@@ -86,4 +91,4 @@ jobs:
86
91
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
87
92
88
93
89
- pytest tests/
94
+ pytest tests/
0 commit comments