Add basic tests framework

This commit is contained in:
2024-07-08 20:05:45 +01:00
parent 7bd1cec4bb
commit 421843757f
7 changed files with 162 additions and 1 deletions

View File

@@ -12,8 +12,20 @@ packages = [{include = "pydantic_spaceapi"}]
python = "^3.10"
poetry = "^1.7.1"
pydantic-extra-types = "^2.8.2"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^8.0.0"
ruff = "^0.5.1"
[tool.poetry.group.github]
optional = true
[tool.poetry.group.github.dependencies]
pytest-github-actions-annotate-failures = "^0.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"