Added testing
This commit is contained in:
parent
821251b77c
commit
56c1d5427a
8 changed files with 151 additions and 8 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue