-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
23 lines (20 loc) · 761 Bytes
/
pyproject.toml
File metadata and controls
23 lines (20 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This repository is a monorepo of three separately-published packages, each
# under packages/ with its own pyproject.toml:
#
# packages/core -> python-redlines (pure Python)
# packages/ooxmlpowertools -> python-redlines-ooxmlpowertools (engine binary)
# packages/docxodus -> python-redlines-docxodus (engine binary)
#
# The repo root is not itself an installable project. This file holds only the
# shared tooling configuration (pytest, coverage) used when running the tests.
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source_pkgs = ["python_redlines"]
branch = true
[tool.coverage.report]
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]