Make flake8 check spack script as well as .py files (#11513)
* Make flake8 check bin/spack
This commit is contained in:
parent
4d71117080
commit
e2065fad72
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ def changed_files(args):
|
|||
|
||||
for f in files:
|
||||
# Ignore non-Python files
|
||||
if not f.endswith('.py'):
|
||||
if not (f.endswith('.py') or f == 'bin/spack'):
|
||||
continue
|
||||
|
||||
# Ignore files in the exclude locations
|
||||
|
|
Loading…
Reference in a new issue