diff --git a/pyproject.toml b/pyproject.toml index bb105f3..22aabe3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -148,29 +148,26 @@ select = [ "UP045" ] +[tool.poe.executor] +type = "uv" + [tool.poe.tasks.test] cmd = "pytest $POE_EXTRA_ARGS" -executor = {type = "uv", isolated = true} [tool.poe.tasks.lint] cmd = "ruff check --fix --show-fixes" -executor = { type = "uv", isolated = true } [tool.poe.tasks.lint-checkonly] cmd = "ruff check" -executor = { type = "uv", isolated = true } [tool.poe.tasks.ty] cmd = "ty check" -executor = {type = "uv", isolated = true} [tool.poe.tasks.pyright] cmd = "pyright" -executor = {type = "uv", isolated = true} [tool.poe.tasks.mypy] cmd = "mypy tests construct_typed" -executor = {type = "uv", isolated = true} [tool.poe.tasks.typecheck] sequence = [