From e451877e16b42b366712ba74cafd0448951c373e Mon Sep 17 00:00:00 2001 From: "Robin.Schmidt" Date: Thu, 27 Aug 2026 09:19:55 +0200 Subject: [PATCH] Removed poe task isolation to speedup the tasks. --- pyproject.toml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) 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 = [