We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c81f0be commit 9345ec8Copy full SHA for 9345ec8
1 file changed
.github/workflows/master.yml
@@ -55,8 +55,10 @@ jobs:
55
- name: Run coverage
56
run: |
57
pip install .
58
- coverage run --omit=\*/test_\* -m unittest
59
- coverage xml
+ pip install pytest-xvfb
+ pip install pytest-timeout
60
+ pytest --ignore=W605 --timeout=50 --cov=spatialmath --cov-report xml:coverage.xml
61
+ coverage report
62
- name: upload coverage to Codecov
63
uses: codecov/codecov-action@v1
64
with:
0 commit comments