Set up pytest and coverage tooling

This commit is contained in:
2026-08-28 01:15:28 +02:00
parent 34df950cbd
commit 6afc8585db
3 changed files with 32 additions and 0 deletions
+11
View File
@@ -17,7 +17,9 @@ dependencies = [
dev = [
"beartype",
"black",
"coverage",
"mypy",
"pytest",
"types-PyYAML",
"types-Pygments",
]
@@ -31,6 +33,15 @@ target-version = ["py314"]
[tool.mypy]
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["omicron"]
[tool.coverage.report]
show_missing = true
[tool.setuptools.packages.find]
where = ["."]
include = ["omicron.ssg*"]