summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
authorJosh Kearney <josh@jk0.org>2013-01-30 13:56:12 -0600
committerJosh Kearney <josh@jk0.org>2013-01-30 14:59:29 -0600
commit17a87b9c0270053fc3ecfaade6606d135894e51c (patch)
tree7daf52569923f34f547d60758553a2cce096bf6f /run_tests.sh
parent26fcc303b29e5fdfc09baa363ba2ac4a5f77c7eb (diff)
downloadpython-openstackclient-17a87b9c0270053fc3ecfaade6606d135894e51c.tar.gz
Clean up test_shell so that the tests are captured though the test framework.
Also makes a small modification to gitignore. Change-Id: Iefbfbcfd35270b06ed65edb34708fa9b4d5bf563
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-xrun_tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.sh b/run_tests.sh
index 5a5ff701..71b336e5 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -77,7 +77,7 @@ function run_tests {
if [ "x$testrargs" = "x" ]; then
testrargs="^(?!.*test_coverage_ext).*$"
fi
- export PYTHON="${wrapper} coverage run --source novaclient --parallel-mode"
+ export PYTHON="${wrapper} coverage run --source openstackclient --parallel-mode"
fi
# Just run the test suites in current environment
set +e
@@ -176,5 +176,5 @@ fi
if [ $coverage -eq 1 ]; then
echo "Generating coverage report in covhtml/"
${wrapper} coverage combine
- ${wrapper} coverage html --include='novaclient/*' --omit='novaclient/openstack/common/*' -d covhtml -i
+ ${wrapper} coverage html --include='openstackclient/*' --omit='openstackclient/openstack/common/*' -d covhtml -i
fi