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.
2 parents d4ff3c2 + cac91e8 commit ea2b274Copy full SHA for ea2b274
.github/workflows/python-app.yml
@@ -34,8 +34,12 @@ jobs:
34
if [[ $SPHINX_VERSION != "" ]]; then
35
SPHINX="${SPHINX}==${SPHINX_VERSION}";
36
fi
37
- pip install pytest pytest-cov codecov "${SPHINX}" sphinx-testing .
+ pip install pytest pytest-cov codecov "${SPHINX}" sphinx-testing -e .
38
- name: Test with pytest
39
run: |
40
- pytest --cov=autodocsumm --cov-report=xml
+ pytest --cov=autodocsumm --cov-report=xml tests
41
+ - name: Upload codecov
42
+ env:
43
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
44
+ run: |
45
codecov
0 commit comments