summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2015-01-20 13:18:54 -0500
committerDoug Hellmann <doug@doughellmann.com>2015-01-20 13:18:54 -0500
commitccf8e1a8a957100164e7bbc72f5861b028c009a9 (patch)
tree46d5b59b0724b219841a9f1958bb63e644c44d09
parentf640b5e3f8b374892645549693bb557efdc448db (diff)
downloadoslosphinx-ccf8e1a8a957100164e7bbc72f5861b028c009a9.tar.gz
Update run_cross_tests.sh to latest
Change-Id: I0f660fde6bae0cc5a4aa1b7deb9f94d3ffee0bc5
-rwxr-xr-xtools/run_cross_tests.sh17
1 files changed, 13 insertions, 4 deletions
diff --git a/tools/run_cross_tests.sh b/tools/run_cross_tests.sh
index 5e7bc11..d61ae9d 100755
--- a/tools/run_cross_tests.sh
+++ b/tools/run_cross_tests.sh
@@ -10,7 +10,10 @@
set -e
project_dir="$1"
-venv="$2"
+shift
+venv="$1"
+shift
+posargs="$*"
if [ -z "$project_dir" -o -z "$venv" ]
then
@@ -19,11 +22,12 @@ ERROR: Missing argument(s)
Usage:
- $0 PROJECT_DIR VIRTUAL_ENV
+ $0 PROJECT_DIR VIRTUAL_ENV [POSARGS]
Example, run the python 2.7 tests for python-neutronclient:
$0 /opt/stack/python-neutronclient py27
+ $0 /opt/stack/nova py27 xenapi
EOF
exit 1
@@ -36,18 +40,23 @@ tox_envbin=$project_dir/.tox/$venv/bin
our_name=$(python setup.py --name)
+# Build the egg-info, including the source file list,
+# so we install all of the files, even if the package
+# list or name has changed.
+python setup.py egg_info
+
# Replace the pip-installed package with the version in our source
# tree. Look to see if we are already installed before trying to
# uninstall ourselves, to avoid failures from packages that do not use us
# yet.
if $tox_envbin/pip freeze | grep -q $our_name
then
- $tox_envbin/pip uninstall -y $our_name
+ $tox_envbin/pip uninstall -y $our_name || echo "Ignoring error"
fi
$tox_envbin/pip install -U .
# Run the tests
-(cd $project_dir && tox -e $venv)
+(cd $project_dir && tox -e $venv -- $posargs)
result=$?