Код: Выделить всё
┣ 📦mypackage
┃ ┣ 📦subpackage
┃ ┃ ┗ 📜mymodule.py
┃ ┣ 📜__init__.py
┃ ┗ 📜main.py
┣ 📦tests
┃ ┗ 📜test_mymodule.py
┗ 📜pyproject.toml
Код: Выделить всё
[tool.coverage.report]
fail_under = 80
[tool.coverage.run]
branch = true
include = ["mypackage/*"]
command_line = "-m unittest discover -s tests/"
Код: Выделить всё
...
----------------------------------------------------------------------
Ran 3 tests in 0.000s
OK
Код: Выделить всё
Name Stmts Miss Branch BrPart Cover
--------------------------------------------------------------------
mypackage/__init__.py 9 0 2 0 100%
mypackage/subpackage/mymodule.py 15 2 2 0 88%
--------------------------------------------------------------------
TOTAL 24 2 4 0 93%