2020-05-29 20:24:19 +02:00
|
|
|
#!/usr/bin/env python3
|
2019-12-19 17:29:32 +01:00
|
|
|
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
|
|
import glob
|
|
|
|
|
|
|
|
# Checks that all python files in the repository are at least free of syntax
|
|
|
|
# errors. This provides a minimal pre-/post-commit check for python file
|
|
|
|
# modifications.
|
|
|
|
|
2019-12-20 00:35:37 +01:00
|
|
|
filenames = []
|
|
|
|
# Avoid scanning all of ./ because there might be other external repos
|
|
|
|
# linked in.
|
|
|
|
for base in ["buckifier", "build_tools", "coverage", "tools"]:
|
|
|
|
# Clean this up when we finally upgrade to Python 3
|
|
|
|
for suff in ["*", "*/*", "*/*/*"]:
|
|
|
|
filenames += glob.glob(base + "/" + suff + ".py")
|
|
|
|
|
|
|
|
for filename in filenames:
|
2019-12-19 17:29:32 +01:00
|
|
|
source = open(filename, 'r').read() + '\n'
|
|
|
|
# Parses and syntax checks the file, throwing on error. (No pyc written.)
|
|
|
|
_ = compile(source, filename, 'exec')
|
|
|
|
|
2019-12-20 00:35:37 +01:00
|
|
|
print("No syntax errors in {0} .py files".format(len(filenames)))
|