Skip to content

Commit 282649c

Browse files
committed
Remove old/unsupported options from run_tests help message.
Change-Id: Ie0d796ecbd3c98b496a225c2a2c128db94a1831e
1 parent 4297e57 commit 282649c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

run_tests.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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 "
@@ -177,6 +175,6 @@ fi
177175

178176
if [ $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
182180
fi

0 commit comments

Comments
 (0)