We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d609b78 commit f12838cCopy full SHA for f12838c
.github/workflows/test.yaml
@@ -42,6 +42,6 @@ jobs:
42
run: pip list
43
- name: Test with pytest
44
run: |
45
- pytest -s tests
+ pytest -s --cov=terratorch -v --cov-report term-missing tests
46
47
pyproject.toml
@@ -69,9 +69,11 @@ dev = [
69
"mkdocstrings[python]",
70
"mike" # for building docs with versions
71
]
72
+
73
test = [
- "coverage",
74
- "pytest"
+ "pytest",
75
+ "pytest-coverage",
76
+ "coverage-badge"
77
78
79
mmseg = [
0 commit comments