
Moving the whitespace linting job as part of PEP8 job to reduce the need to create a VM just to find whitespaces in none *.py files. Python files' whitespace violation is covered as part of PEP8 job. Change-Id: I3bc6047c9ab65e8f55f91a949a6c05ef4e38ea16 Signed-off-by: Tin Lam <tin@irrational.io>
15 lines
267 B
Bash
Executable File
15 lines
267 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -xe
|
|
|
|
RES=$(find . \
|
|
-not -path "*/\.*" \
|
|
-not -path "*/*.egg-info/*" \
|
|
-not -path "*/releasenotes/build/*" \
|
|
-not -path "*/doc/build/*" \
|
|
-not -name "*.tgz" \
|
|
-type f -exec egrep -l " +$" {} \;)
|
|
|
|
if [[ -n $RES ]]; then
|
|
exit 1
|
|
fi
|