2026-06-03 10:43:17 +01:00
|
|
|
[project]
|
|
|
|
|
name = "gestiontablets"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Add your description here"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.14"
|
|
|
|
|
dependencies = []
|
2026-06-17 17:07:20 +01:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
python_files = "test_*.py"
|
|
|
|
|
python_classes = "Test*"
|
|
|
|
|
python_functions = "test_*"
|
|
|
|
|
verbose = 1
|
|
|
|
|
addopts = "-v"
|
|
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
|
source = ["."]
|
|
|
|
|
omit = [
|
|
|
|
|
"*/tests/*",
|
|
|
|
|
"*/.venv/*",
|
|
|
|
|
"*/__pycache__/*",
|
|
|
|
|
"*/.git/*",
|
|
|
|
|
"*/templates/*",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
|
exclude_lines = [
|
|
|
|
|
"pragma: no cover",
|
|
|
|
|
"def __repr__",
|
|
|
|
|
"raise NotImplementedError",
|
|
|
|
|
"if __name__ == .__main__.:",
|
|
|
|
|
"if TYPE_CHECKING:",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.coverage.html]
|
|
|
|
|
directory = "htmlcov"
|