mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-15 05:56:36 +03:00
28 lines
605 B
Python
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()
|