-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprecommit.py
More file actions
executable file
·60 lines (45 loc) · 1.83 KB
/
precommit.py
File metadata and controls
executable file
·60 lines (45 loc) · 1.83 KB
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
#!/usr/bin/env python3
"""Runs precommit checks on the repository."""
import argparse
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", "lexery", "setup.py", "precommit.py"],
cwd=str(repo_root))
else:
subprocess.check_call(
["yapf", "--diff", "--style=style.yapf", "--recursive", "tests", "lexery", "setup.py", "precommit.py"],
cwd=str(repo_root))
print("Mypy'ing...")
subprocess.check_call(["mypy", "lexery", "tests"], cwd=str(repo_root))
print("Pylint'ing...")
subprocess.check_call(["pylint", "--rcfile=pylint.rc", "tests", "lexery"], cwd=str(repo_root))
print("Pydocstyle'ing...")
subprocess.check_call(["pydocstyle", "lexery"], cwd=str(repo_root))
print("Doctest'ing ...")
subprocess.check_call([sys.executable, '-m', 'doctest', 'README.rst'])
subprocess.check_call(
[sys.executable, '-m', 'doctest'] + [str(pth) for pth in pathlib.Path("lexery").glob("**/*.py")])
print("Testing...")
subprocess.check_call(
["coverage", "run", "--source", "lexery", "-m", "unittest", "discover", "tests"], cwd=str(repo_root))
subprocess.check_call(["coverage", "report"])
return 0
if __name__ == "__main__":
sys.exit(main())