Added testing

This commit is contained in:
Firq 2024-10-20 21:38:22 +02:00
parent 821251b77c
commit 56c1d5427a
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
8 changed files with 151 additions and 8 deletions

View file

@ -28,6 +28,9 @@ typing = [
"types-tqdm~=4.66.0",
"types-requests~=2.32.0",
]
testing = [
"pytest~=8.3.3"
]
[project.scripts]
skyeweave = "skyeweave.cli:run"
@ -35,6 +38,7 @@ skyeweave = "skyeweave.cli:run"
[tool.setuptools.packages.find]
where = ["."]
include = ["skyeweave*"]
exclude = ["tests*"]
[tool.setuptools.package-data]
"*" = ["py.typed"]
@ -55,6 +59,13 @@ warn_return_any = true
warn_unused_configs = true
exclude = [ "test" ]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-rA -v"
testpaths = [
"tests",
]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"