Skip to content
Snippets Groups Projects
Commit ced0e5be authored by Christophe Simonis's avatar Christophe Simonis
Browse files

[FIX] test_lint: also ignore js files in `static/src/tests` directory

parent 131e478a
Branches
Tags
No related merge requests found
......@@ -34,7 +34,7 @@ class TestECMAScriptVersion(TransactionCase):
files_to_check = []
for p in mod_paths:
for dp, _, file_names in os.walk(p):
if 'static/test' in dp:
if 'static/test' in dp or "static/src/tests" in dp:
continue
for fn in file_names:
fullpath_name = os.path.join(dp, fn)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment