summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
authorTrevor McKay <tmckay@redhat.com>2014-03-13 13:36:48 -0400
committerTrevor McKay <tmckay@redhat.com>2014-03-13 18:23:50 -0400
commit6b014ee3650e1d616195c5816f224e9d481c9746 (patch)
treef746305dbaaf55236dc6552d1e8f45f4453839bb /run_tests.sh
parent38882f71987cb6be80a660b51c2ff0a31c2eacb1 (diff)
downloadpython-saharaclient-6b014ee3650e1d616195c5816f224e9d481c9746.tar.gz
Swap the saharaclient and savannaclient directories
Exchange the contents of the saharaclient and savannaclient directories so that 'savannlient' is the effective alias and 'saharaclient' contains all of the source code. * Change all of the imports that reference savannaclient to saharaclient * Change paths that reference savannaclient (under doc) * Leave variable and class names unchaned at this point * Leave references to python_savannaclient unchanged since the top * level dir name has not yet changed Partial-implements: blueprint savanna-renaming-client Change-Id: I83cb21922ae5a8cec291990b3ab67bb9e3cb2d62
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 e0f37e9..31a67b7 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -79,7 +79,7 @@ function run_tests {
if [ "x$testrargs" = "x" ]; then
testrargs="^(?!.*test_coverage_ext).*$"
fi
- export PYTHON="${wrapper} coverage run --source savannaclient --parallel-mode"
+ export PYTHON="${wrapper} coverage run --source saharaclient --parallel-mode"
fi
# Just run the test suites in current environment
set +e
@@ -160,5 +160,5 @@ fi
if [ $coverage -eq 1 ]; then
echo "Generating coverage report in covhtml/"
${wrapper} coverage combine
- ${wrapper} coverage html --include='savannaclient/*' --omit='savannaclient/openstack/common/*' -d covhtml -i
+ ${wrapper} coverage html --include='saharaclient/*' --omit='saharaclient/openstack/common/*' -d covhtml -i
fi