summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
authorandy <github@anarkystic.com>2010-07-29 19:53:00 +0200
committerandy <github@anarkystic.com>2010-07-29 19:53:00 +0200
commit9dfdbe11b89ae1f490257b6f687c2a5f5c90bb14 (patch)
tree94744cf365e184662efaacfaaba4dba9c6cf8686 /run_tests.sh
parent37b9de911f1c5100aa3c9fd18f07c9ebd5ee5560 (diff)
downloadnova-9dfdbe11b89ae1f490257b6f687c2a5f5c90bb14.tar.gz
Add some useful features to our flags
* No longer dies if there are unknown flags. * Allows you to declare that you will use a flag from another file * Allows you to import new flags at runtime and reparses the original arguments to fill them once they are accessed.
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-xrun_tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh
index 1bf3d1a791..9b2de7aea6 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -4,7 +4,7 @@ venv=.nova-venv
with_venv=tools/with_venv.sh
if [ -e ${venv} ]; then
- ${with_venv} python run_tests.py
+ ${with_venv} python run_tests.py $@
else
echo "You need to install the Nova virtualenv before you can run this."
echo ""