Showing elapsed time is now default

This commit is contained in:
Rick Harris 2011-06-15 01:21:11 +00:00
parent e20444542a
commit 43dd1ec608
2 changed files with 4 additions and 4 deletions

View File

@ -334,13 +334,13 @@ if __name__ == '__main__':
logging.setup()
# If any argument looks like a test name but doesn't have "nova.tests" in
# front of it, automatically add that so we don't have to type as much
show_elapsed = False
show_elapsed = True
argv = []
for x in sys.argv:
if x.startswith('test_'):
argv.append('nova.tests.%s' % x)
elif x.startswith('--show-elapsed'):
show_elapsed = True
elif x.startswith('--hide-elapsed'):
show_elapsed = False
else:
argv.append(x)

View File

@ -10,7 +10,7 @@ function usage {
echo " -f, --force Force a clean re-build of the virtual environment. Useful when dependencies have been added."
echo " -p, --pep8 Just run pep8"
echo " -h, --help Print this usage message"
echo " --show-elapsed Print elapsed time in seconds for tests along with slowest tests"
echo " --hide-elapsed Don't print the elapsed time for each test along with slow test list"
echo ""
echo "Note: with no options specified, the script will try to run the tests in a virtual environment,"
echo " If no virtualenv is found, the script will ask if you would like to create one. If you "