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 a817cfe commit 1f66d09Copy full SHA for 1f66d09
.github/workflows/python-test.yml
@@ -39,7 +39,10 @@ jobs:
39
- name: Lint with flake8
40
run: flake8 .
41
- name: Run tests and collect coverage
42
- run: pytest --cov .
+ run: |
43
+ coverage run --source=tests,clang_tools -m pytest
44
+ coverage report -m
45
+ coverage html
46
- name: Upload coverage reports to Codecov
47
run: |
48
# Replace `linux` below with the appropriate OS
requirements-dev.txt
@@ -1,4 +1,3 @@
1
pytest
2
-pytest-cov
3
coverage
4
flake8
0 commit comments