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 f1a0dae commit ecb6f9aCopy full SHA for ecb6f9a
.coveragerc
@@ -0,0 +1,12 @@
1
+[run]
2
+branch = True
3
+omit =
4
+ */__init__.py
5
+ tests/*
6
+
7
+[report]
8
+show_missing = True
9
+fail_under = 94
10
11
+[html]
12
+directory = docs/coverage
.github/workflows/run_code_checks.yml
@@ -35,4 +35,7 @@ jobs:
35
run: poetry run pre-commit run --all-files
36
37
- name: Run unit tests
38
- run: poetry run pytest tests/
+ run: poetry run coverage run pytest tests/
39
40
+ - name: Check unit test coverage
41
+ run: poetry run coverage report
0 commit comments