ci: Add unit and integration tests

This commit is contained in:
2026-05-04 11:06:20 +02:00
parent 10cad4c3f7
commit cb8daed405
9 changed files with 955 additions and 2 deletions
+13 -1
View File
@@ -9,8 +9,20 @@ dependencies = [
]
[project.optional-dependencies]
dev = ["pytest"]
dev = ["pytest>=8.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"unit: pure-Python tests, no Docker required",
"integration: tests that spin up a real Docker container",
]
[dependency-groups]
dev = [
"coverage>=7.13.5",
]