From fc1f65a756e2a09b69079b8ab8e54077eb016284 Mon Sep 17 00:00:00 2001 From: Robin Mackaij Date: Thu, 22 Jun 2023 10:11:45 +0200 Subject: [PATCH] Tasks tweak --- tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index 82ef772..d7a4041 100644 --- a/tasks.py +++ b/tasks.py @@ -65,8 +65,8 @@ def tests(context): @task def lint(context): - subprocess.run(f"mypy {ROOT}", shell=True, check=False) - subprocess.run(f"pylint {ROOT}/src/OpenApiLibCore", shell=True, check=False) + subprocess.run(f"mypy {ROOT}/src", shell=True, check=False) + subprocess.run(f"pylint {ROOT}/src", shell=True, check=False) subprocess.run(f"robocop {ROOT}/tests/suites", shell=True, check=False)