Moved generation of pylint/pep8 reports to after running the

test suite, so the clean reports command doesn't blow
away the reports.
This commit is contained in:
Will Daly
2013-06-21 10:57:19 -04:00
parent 51469ad30a
commit 3d202ffc71

View File

@@ -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