Skip to content

Commit a4574e2

Browse files
Also lint tests
1 parent 48ab12e commit a4574e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/lint/src/lint/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ def main() -> None:
1414
watch = ["--watch"] if "--watch" in sys.argv else []
1515
raise_err(os.system(" ".join(["ruff", "check", "src", "scripts", "tests"] + fix)))
1616
raise_err(os.system("ruff format src scripts tests"))
17-
raise_err(os.system("mypy src"))
18-
raise_err(os.system(" ".join(["pyright"] + watch + ["src"])))
17+
raise_err(os.system("mypy src tests"))
18+
raise_err(os.system(" ".join(["pyright"] + watch + ["src", "tests"])))

0 commit comments

Comments
 (0)