We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa9041a commit a9d7c67Copy full SHA for a9d7c67
.github/workflows/ci.yml
@@ -41,4 +41,12 @@ jobs:
41
run: poetry run black . --check
42
43
- name: Test with pytest
44
- run: poetry run pytest --cov-report term-missing --cov=labthings ./tests
+ run: poetry run pytest --cov-report --cov-report=xml term-missing --cov=labthings ./tests
45
+
46
+ - name: Upload coverage to Codecov
47
+ uses: codecov/codecov-action@v1
48
+ with:
49
+ file: ./coverage.xml
50
+ flags: unittests
51
+ name: codecov-umbrella
52
+ fail_ci_if_error: true
0 commit comments