forked from Parquery/icontract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
precommit.py
executable file
·76 lines (59 loc) · 2.24 KB
/
precommit.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
#!/usr/bin/env python3
"""Runs precommit checks on the repository."""
import argparse
import os
import pathlib
import subprocess
import sys
def main() -> int:
""""
Main routine
"""
parser = argparse.ArgumentParser()
parser.add_argument(
"--overwrite",
help="Overwrites the unformatted source files with the well-formatted code in place. "
"If not set, an exception is raised if any of the files do not conform to the style guide.",
action='store_true')
args = parser.parse_args()
overwrite = bool(args.overwrite)
repo_root = pathlib.Path(__file__).parent
print("YAPF'ing...")
if overwrite:
subprocess.check_call(
[
"yapf", "--in-place", "--style=style.yapf", "--recursive", "tests", "icontract", "setup.py",
"precommit.py"
],
cwd=repo_root.as_posix())
else:
subprocess.check_call(
["yapf", "--diff", "--style=style.yapf", "--recursive", "tests", "icontract", "setup.py", "precommit.py"],
cwd=repo_root.as_posix())
print("Mypy'ing...")
subprocess.check_call(["mypy", "--strict", "icontract", "tests"], cwd=repo_root.as_posix())
print("Pylint'ing...")
subprocess.check_call(["pylint", "--rcfile=pylint.rc", "tests", "icontract"], cwd=repo_root.as_posix())
print("Pydocstyle'ing...")
subprocess.check_call(["pydocstyle", "icontract"], cwd=repo_root.as_posix())
print("Testing...")
env = os.environ.copy()
env['ICONTRACT_SLOW'] = 'true'
# yapf: disable
subprocess.check_call(
["coverage", "run",
"--source", "icontract",
"-m", "unittest", "discover", "tests"],
cwd=repo_root.as_posix(),
env=env)
# yapf: enable
subprocess.check_call(["coverage", "report"])
print("Doctesting...")
subprocess.check_call(["python3", "-m", "doctest", "README.rst"])
for pth in (repo_root / "icontract").glob("**/*.py"):
subprocess.check_call(["python3", "-m", "doctest", pth.as_posix()])
print("Checking the restructured text of the readme...")
subprocess.check_call(['python3', 'setup.py', 'check', '--restructuredtext', '--strict'])
return 0
if __name__ == "__main__":
sys.exit(main())