Simplify pep8 output to one line per violation

Change-Id: Ia1df3d1fbdd21b1b8884848d27c3a2a567b51943
This commit is contained in:
Brian Waldon 2012-01-30 20:39:20 -08:00
parent 28f2cae161
commit 28f0dd425f

View File

@ -50,7 +50,7 @@ function run_tests {
function run_pep8 {
echo "Running pep8 ..."
PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --repeat --show-pep8 --show-source"
PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --repeat"
PEP8_INCLUDE="bin/* glance tools setup.py run_tests.py"
${wrapper} pep8 $PEP8_OPTIONS $PEP8_INCLUDE
}