From 685c8eff583be4ecaf42f5def4aef00290f72e9d Mon Sep 17 00:00:00 2001 From: Arbion Halili <99731180+ToxicPine@users.noreply.github.com> Date: Tue, 17 Jun 2025 07:37:08 +0100 Subject: [PATCH] Configure Runner Tasks to Cover "engines/" --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e48fc7ae..446935e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,10 +26,10 @@ darwin = [ # task runner configuration [tool.poe.tasks] -fmt = { shell = "ruff format master worker shared", help = "Format the code" } -lint = { shell = "ruff check --fix master worker shared", help = "Run the linter" } -test = { shell = "pytest master worker shared", help = "Run the tests" } -check = { shell = "basedpyright --project master worker shared", help = "Run type checker" } +fmt = { shell = "ruff format master worker shared engines/*", help = "Format the code" } +lint = { shell = "ruff check --fix master worker shared engines/*", help = "Run the linter" } +test = { shell = "pytest master worker shared engines/*", help = "Run the tests" } +check = { shell = "basedpyright --project master worker shared engines/*", help = "Run type checker" } ### # workspace configuration