Telethon/tools/check.py
2024-10-06 20:05:11 +02:00

28 lines
605 B
Python

"""
Check formatting, type-check and run offline tests.
"""
import subprocess
import sys
import tempfile
BLACK_IGNORE = r"tl/(abcs|functions|types)/\w+.py"
def run(*args: str) -> int:
return subprocess.run((sys.executable, "-m", *args)).returncode
def main() -> None:
with tempfile.TemporaryDirectory() as tmp_dir:
exit(
run("mypy", "--strict", ".")
or run("ruff", "check", ".")
or run("sphinx", "-M", "dummy", "client/doc", tmp_dir, "-n", "-W")
or run("pytest", ".", "-m", "not net")
)
if __name__ == "__main__":
main()