From 3d202ffc71631fca47616adff1e66bc0d220a81c Mon Sep 17 00:00:00 2001 From: Will Daly Date: Fri, 21 Jun 2013 10:57:19 -0400 Subject: [PATCH] Moved generation of pylint/pep8 reports to after running the test suite, so the clean reports command doesn't blow away the reports. --- jenkins/test.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/jenkins/test.sh b/jenkins/test.sh index e5ac4f6f71..c7728ab367 100755 --- a/jenkins/test.sh +++ b/jenkins/test.sh @@ -69,12 +69,14 @@ bundle install rake install_prereqs rake clobber -rake pep8 > pep8.log || cat pep8.log -rake pylint > pylint.log || cat pylint.log # Run the unit tests (use phantomjs for javascript unit tests) rake test +# Generate pylint and pep8 reports +rake pep8 > pep8.log || cat pep8.log +rake pylint > pylint.log || cat pylint.log + # Generate coverage reports rake coverage