@@ -9,13 +9,11 @@ function usage {
99 echo " -V, --virtual-env Always use virtualenv. Install automatically if not present"
1010 echo " -N, --no-virtual-env Don't use virtualenv. Run tests in local environment"
1111 echo " -s, --no-site-packages Isolate the virtualenv from the global Python environment"
12- echo " -x, --stop Stop running tests after the first error or failure."
1312 echo " -f, --force Force a clean re-build of the virtual environment. Useful when dependencies have been added."
1413 echo " -p, --pep8 Just run pep8"
1514 echo " -P, --no-pep8 Don't run pep8"
1615 echo " -c, --coverage Generate coverage report"
1716 echo " -h, --help Print this usage message"
18- echo " --hide-elapsed Don't print the elapsed time for each test along with slow test list"
1917 echo " "
2018 echo " Note: with no options specified, the script will try to run the tests in a virtual environment,"
2119 echo " If no virtualenv is found, the script will ask if you would like to create one. If you "
177175
178176if [ $coverage -eq 1 ]; then
179177 echo " Generating coverage report in covhtml/"
180- ${wrapper} cverage combine
178+ ${wrapper} coverage combine
181179 ${wrapper} coverage html --include=' novaclient/*' --omit=' novaclient/openstack/common/*' -d covhtml -i
182180fi
0 commit comments