work on tests

This commit is contained in:
Joshua Smith
2025-04-10 09:38:13 -04:00
parent c18a40b502
commit ef45ca0451
8 changed files with 156 additions and 56 deletions

View File

@@ -15,6 +15,12 @@ packages = [
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/temporalio/samples-python/issues"
[tool.poe.tasks]
format = [{cmd = "black ."}, {cmd = "isort ."}]
lint = [{cmd = "black --check ."}, {cmd = "isort --check-only ."}, {ref = "lint-types" }]
lint-types = "mypy --check-untyped-defs --namespace-packages ."
test = "pytest"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
temporalio = "^1.8.0"