GestionTablets/pyproject.toml

38 lines
681 B
TOML
Raw Normal View History

[project]
name = "gestiontablets"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = []
[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"