We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ab12e commit a4574e2Copy full SHA for a4574e2
scripts/lint/src/lint/__init__.py
@@ -14,5 +14,5 @@ def main() -> None:
14
watch = ["--watch"] if "--watch" in sys.argv else []
15
raise_err(os.system(" ".join(["ruff", "check", "src", "scripts", "tests"] + fix)))
16
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"])))
+ raise_err(os.system("mypy src tests"))
+ raise_err(os.system(" ".join(["pyright"] + watch + ["src", "tests"])))
0 commit comments