trivial: fix whitespace-linter catching false positives

Ignores .pyc files and files contained in htmlcov as a coverage
job was recently added.

Change-Id: I33b1b88e90060f3b26f41b6acbbc0c7091caeb57
This commit is contained in:
Felipe Monteiro 2018-11-25 12:30:56 -05:00
parent a3da86e311
commit e3f6efbb1f
1 changed files with 2 additions and 0 deletions

View File

@ -5,7 +5,9 @@ RES=$(find . \
-not -path "*/\.*" \
-not -path "*/doc/build/*" \
-not -path "*/doc/source/images/*" \
-not -path "*/htmlcov/*" \
-not -name "*.tgz" \
-not -name "*.pyc" \
-type f -exec egrep -l " +$" {} \;)
if [[ -n $RES ]]; then