summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-01-30 17:05:42 +0000
committerGerrit Code Review <review@openstack.org>2013-01-30 17:05:42 +0000
commit26fcc303b29e5fdfc09baa363ba2ac4a5f77c7eb (patch)
treea463823bfc0d44fcdce4ba4ed051b85fc760f9ad
parent6449851a969f356e0c8d13bfbcefd6b2c21fb350 (diff)
parent282649ca40a6d91a253d4191380be10db43375f2 (diff)
downloadpython-openstackclient-26fcc303b29e5fdfc09baa363ba2ac4a5f77c7eb.tar.gz
Merge "Remove old/unsupported options from run_tests help message."
-rwxr-xr-xrun_tests.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/run_tests.sh b/run_tests.sh
index 47a5207d..5a5ff701 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -9,13 +9,11 @@ function usage {
echo " -V, --virtual-env Always use virtualenv. Install automatically if not present"
echo " -N, --no-virtual-env Don't use virtualenv. Run tests in local environment"
echo " -s, --no-site-packages Isolate the virtualenv from the global Python environment"
- echo " -x, --stop Stop running tests after the first error or failure."
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 " -P, --no-pep8 Don't run pep8"
echo " -c, --coverage Generate coverage report"
echo " -h, --help Print this usage message"
- 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 "
@@ -177,6 +175,6 @@ fi
if [ $coverage -eq 1 ]; then
echo "Generating coverage report in covhtml/"
- ${wrapper} cverage combine
+ ${wrapper} coverage combine
${wrapper} coverage html --include='novaclient/*' --omit='novaclient/openstack/common/*' -d covhtml -i
fi