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 a0d90f7 commit 1d773afCopy full SHA for 1d773af
.github/workflows/test.yml
@@ -26,4 +26,11 @@ jobs:
26
- name: Run linter
27
run: pipenv run flake8 .
28
- name: Run tests
29
- run: PYTHONPATH="$(pwd):$PYTHONPATH" pipenv run py.test --cov=crontools tests
+ run: PYTHONPATH="$(pwd):$PYTHONPATH" pipenv run py.test --cov=crontools --cov-report=xml tests
30
+ - name: Upload coverage to Codecov
31
+ uses: codecov/codecov-action@v1
32
+ with:
33
+ token: ${{ secrets.CODECOV_TOKEN }}
34
+ files: ./coverage.xml
35
+ flags: unittests
36
+ fail_ci_if_error: true
0 commit comments