diff options
Diffstat (limited to 'python/tidy.py')
-rw-r--r-- | python/tidy.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/python/tidy.py b/python/tidy.py index 84a570f2d41..40251cdf8a7 100644 --- a/python/tidy.py +++ b/python/tidy.py @@ -19,6 +19,11 @@ from licenseck import licenses filetypes_to_check = [".rs", ".rc", ".cpp", ".c", ".h", ".py", ".toml", ".webidl"] reftest_directories = ["tests/ref"] reftest_filetype = ".list" +python_dependencies = [ + "./python/dependencies/flake8-2.4.1-py2.py3-none-any.whl", + "./python/dependencies/pep8-1.5.7-py2.py3-none-any.whl", + "./python/dependencies/pyflakes-0.9.0-py2.py3-none-any.whl", +] ignored_files = [ # Upstream @@ -31,7 +36,6 @@ ignored_files = [ "python/toml/*", "components/script/dom/bindings/codegen/parser/*", "components/script/dom/bindings/codegen/ply/*", - "python/_virtualenv/*", # Generated and upstream code combined with our own. Could use cleanup "target/*", @@ -236,6 +240,7 @@ def check_spec(file_name, contents): def collect_errors_for_files(files_to_check, checking_functions): + base_path = "components/script/dom/" for file_name in files_to_check: with open(file_name, "r") as fp: contents = fp.read() @@ -268,6 +273,8 @@ def get_reftest_names(line): def scan(): + sys.path += python_dependencies + all_files = collect_file_names() files_to_check = filter(should_check, all_files) |