Skip to content

Commit

Permalink
Let's try to run the individual tests separately
Browse files Browse the repository at this point in the history
But as part of the same automatic script.
This should work, will ensure that we are actually testing the new code, and will give us another data point on this heisenbug
  • Loading branch information
shankari committed Feb 25, 2018
1 parent a27bfa4 commit 8b3541e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions runIndividualTests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
set -e
# Clean out the .pyc files so that we don't get false positives when we refactor code
# find . -name \*.pyc | xargs rm
# We can't do this - it looks like the automated test environment doesn't support xargs
# Removing emission/tests/storageTests/__init__.pyc
# + ./runAllTests.sh
# rm: missing operand
# Try `rm --help' for more information.
PYTHONPATH=. python -m unittest discover -s emission/individual_tests -p Test*;

0 comments on commit 8b3541e

Please sign in to comment.