Merge pull request #10427 from edx/benp/fix-scripts-pylint-bug

Pylint results should be piped.
This commit is contained in:
Ben Patterson
2015-10-29 15:27:31 -04:00

View File

@@ -66,7 +66,7 @@ case "$TEST_SUITE" in
echo "Finding pep8 violations and storing report..."
paver run_pep8 > pep8.log || { cat pep8.log; EXIT=1; }
echo "Finding pylint violations and storing in report..."
paver run_pylint -l $PYLINT_THRESHOLD || { cat pylint.log; EXIT=1; }
paver run_pylint -l $PYLINT_THRESHOLD > pylint.log || { cat pylint.log; EXIT=1; }
mkdir -p reports
echo "Finding jshint violations and storing report..."