forked from indygreg/python-build-standalone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check.py
executable file
·94 lines (74 loc) · 2.3 KB
/
check.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/env python3
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
from __future__ import annotations
import argparse
import os
import pathlib
import subprocess
import sys
import venv
ROOT = pathlib.Path(os.path.abspath(__file__)).parent
VENV = ROOT / "venv.dev"
PIP = VENV / "bin" / "pip"
PYTHON = VENV / "bin" / "python"
REQUIREMENTS = ROOT / "requirements.dev.txt"
def bootstrap():
venv.create(VENV, with_pip=True)
subprocess.run([str(PIP), "install", "-r", str(REQUIREMENTS)], check=True)
os.environ["PYBUILD_BOOTSTRAPPED"] = "1"
os.environ["PATH"] = "%s:%s" % (str(VENV / "bin"), os.environ["PATH"])
os.environ["PYTHONPATH"] = str(ROOT)
args = [str(PYTHON), __file__, *sys.argv[1:]]
os.execv(str(PYTHON), args)
def run_command(command: list[str]) -> int:
print("$ " + " ".join(command))
returncode = subprocess.run(
command, stdout=sys.stdout, stderr=sys.stderr
).returncode
print()
return returncode
def run():
env = dict(os.environ)
env["PYTHONUNBUFFERED"] = "1"
parser = argparse.ArgumentParser(description="Check code.")
parser.add_argument(
"--fix",
action="store_true",
help="Fix problems",
)
args = parser.parse_args()
# Lints:
# Sort imports
# Unused import
# Unused variable
check_args = ["--select", "I,F401,F841"]
format_args = []
mypy_args = [
"pythonbuild",
"check.py",
"build-linux.py",
"build-macos.py",
"build-windows.py",
]
if args.fix:
check_args.append("--fix")
else:
format_args.append("--check")
check_result = run_command(["ruff", "check"] + check_args)
format_result = run_command(["ruff", "format"] + format_args)
mypy_result = run_command(["mypy"] + mypy_args)
if check_result + format_result + mypy_result:
print("Checks failed!")
sys.exit(1)
else:
print("Checks passed!")
if __name__ == "__main__":
try:
if "PYBUILD_BOOTSTRAPPED" not in os.environ:
bootstrap()
else:
run()
except subprocess.CalledProcessError as e:
sys.exit(e.returncode)