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 c540e0e commit 0419959Copy full SHA for 0419959
.github/workflows/ci.yaml
@@ -32,4 +32,10 @@ jobs:
32
run: poetry install
33
34
- name: Test with pytest
35
- run: poetry run pytest
+ run: poetry run pytest --cov=./ --cov-report=xml
36
+
37
+ - name: Upload coverage to Codecov
38
+ uses: codecov/codecov-action@v1
39
+ with:
40
+ file: ./coverage.xml
41
+ flags: unittests
pyproject.toml
@@ -21,6 +21,8 @@ pylint = "^2.6.0"
21
mkdocs = "^1.1.2"
22
ipython = "^7.18.1"
23
ipykernel = "^5.3.4"
24
+coverage = "^5.3"
25
+pytest-cov = "^2.10.1"
26
27
[build-system]
28
requires = ["poetry>=0.12"]
0 commit comments