We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bb4804 commit 309acc9Copy full SHA for 309acc9
2 files changed
.coveragerc
@@ -1,3 +1,11 @@
1
+[run]
2
+relative_files = true
3
+
4
+[paths]
5
+source =
6
+ injector/
7
+ */site-packages/injector/
8
9
[report]
10
exclude_also =
11
if TYPE_CHECKING:
.github/workflows/ci.yml
@@ -34,7 +34,7 @@ jobs:
34
pip install .
35
- name: Run tests
36
run: |
37
- python -m pytest -vv --cov=injector --cov-branch --cov-report html --cov-report term
+ pytest -vv --cov="$PWD/injector" --cov-branch --cov-report html --cov-report term
38
if which mypy; then mypy injector ; fi
39
if which black; then black --check . ; fi
40
check-manifest
0 commit comments