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 faae908 commit 5159824Copy full SHA for 5159824
.github/workflows/test-lint.yml
@@ -47,6 +47,13 @@ jobs:
47
run: |
48
pipenv run coverage run --source pygitguardian -m nose tests
49
pipenv run coverage report --fail-under=80
50
+ pipenv run coverage xml
51
+ - uses: codecov/codecov-action@v1
52
+ with:
53
+ file: ./coverage.xml
54
+ flags: unittests
55
+ name: codecov-umbrella
56
+ fail_ci_if_error: false
57
58
release:
59
runs-on: ubuntu-latest
.gitignore
@@ -23,6 +23,7 @@ pip-log.txt
23
# Unit test / coverage reports
24
.coverage
25
.tox
26
+coverage.xml
27
nosetests.xml
28
29
# Translations
0 commit comments