mirror of
				https://github.com/LonamiWebs/Telethon.git
				synced 2025-11-04 09:57:29 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			758 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			758 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("isort", ".", "-c", "--profile", "black", "--gitignore")
 | 
						|
            or run("black", ".", "--check", "--extend-exclude", BLACK_IGNORE)
 | 
						|
            or 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()
 |