]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Get output from run_tests.
authorJames E. Blair <james.blair@rackspace.com>
Fri, 16 Sep 2011 16:52:31 +0000 (09:52 -0700)
committerJames E. Blair <james.blair@rackspace.com>
Fri, 16 Sep 2011 16:52:31 +0000 (09:52 -0700)
Remove output redirection from run_tests.
Remove PEP8 from run_tests; it's called from a separate jenkins job.

Change-Id: I6476a3031fe7a52ac52bec5d2ce75ced9590ab2a

run_tests.sh

index b9079e9cae6b3e27c58b8dc928d710f9b1889181..549970bbaa1070375866f00aa3b66c2ca43d6b00 100755 (executable)
@@ -40,7 +40,7 @@ done
 function run_tests {
   # Just run the test suites in current environment
   ${wrapper} rm -f ./$PLUGIN_DIR/tests.sqlite
-  ${wrapper} $NOSETESTS 2> ./$PLUGIN_DIR/run_tests.err.log
+  ${wrapper} $NOSETESTS
 }
 
 NOSETESTS="python ./$PLUGIN_DIR/run_tests.py $noseargs"
@@ -80,13 +80,4 @@ then
   fi
 fi
 
-# FIXME(sirp): bzr version-info is not currently pep-8. This was fixed with
-# lp701898 [1], however, until that version of bzr becomes standard, I'm just
-# excluding the vcsversion.py file
-#
-# [1] https://bugs.launchpad.net/bzr/+bug/701898
-#
-PEP8_EXCLUDE=vcsversion.py
-PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --repeat --show-source"
-PEP8_INCLUDE="bin/* quantum tests tools run_tests.py"
-run_tests && pep8 $PEP8_OPTIONS $PEP8_INCLUDE || exit 1
+run_tests