Skip to content

Commit 37b5a44

Browse files
committed
Switch to src and declarative setuptools project.
Test and coverage on GH Actions
1 parent 5d4c3a7 commit 37b5a44

31 files changed

+2362
-348
lines changed

.coveragerc

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
[run]
22
branch = True
33
cover_pylib = False
4-
source = pytest_helpers_namespace
4+
parallel = True
5+
concurrency = multiprocessing
6+
relative_files = True
7+
58
omit =
6-
pytest_helpers_namespace/version.py
7-
tests/*.py
9+
.nox/*
810
setup.py
911

1012
[report]
@@ -22,13 +24,20 @@ exclude_lines =
2224

2325
# Don't complain if non-runnable code isn't run:
2426
if 0:
27+
if False:
2528
if __name__ == .__main__.:
2629

30+
omit =
31+
.nox/*
32+
setup.py
33+
src/pytest_helpers_namespace/version.py
34+
tests/support/coverage/sitecustomize.py
35+
2736

2837
ignore_errors = True
2938

3039
[paths]
3140
source =
32-
pytest_helpers_namespace
33-
.tox/*/lib/python*/site-packages/pytest_helpers_namespace
34-
.tox/pypy*/site-packages/pytest_helpers_namespace
41+
src/pytest_helpers_namespace
42+
testsuite =
43+
tests/

0 commit comments

Comments
 (0)