b9b56196ce
... because python-swiftclient=3.9.0 causes connection leak in Pyton2.7, which causes failure in functional tests. Currently adding constraint in test-requirments.txt is not working as expected because of global-requirements.txt, so reinstall pyhton-swiftclient during devstack installation. Change-Id: If863bc966a1a5d25db40b812daafcf6a95f5dda5
34 lines
844 B
Bash
Executable File
34 lines
844 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$#" -lt 1 ]; then
|
|
echo "Usage: .functests <flavour>"
|
|
echo "flavour = jenkins | dev"
|
|
exit 1
|
|
fi
|
|
|
|
FLAVOR="$1"
|
|
if [ "$FLAVOR" != "jenkins" ] && [ "$FLAVOR" != "dev" ]; then
|
|
echo "flavour must be either \"jenkins\" or \"dev\""
|
|
echo "dev flavor skips long running tests"
|
|
exit 1
|
|
fi
|
|
shift
|
|
|
|
ant build_storlets
|
|
|
|
if [ ${USE_PYTHON3} == "False" ]; then
|
|
# TODO(takashi): We should use python-swiftclent 3.8.1 to avoid connection
|
|
# leak on py2.7(lp#1873435). Remove this once we get a fixed
|
|
# version released.
|
|
pip uninstall python-swiftclient
|
|
pip install python-swiftclient==3.8.1
|
|
fi
|
|
|
|
SRC_DIR=$(cd $(dirname $0); pwd)
|
|
cd ${SRC_DIR}/tests/functional
|
|
if [ "$FLAVOR" == "jenkins" ]; then
|
|
nosetests --exe -v ${@:2}
|
|
else
|
|
nosetests --exe -v -a '!slow' ${@:2}
|
|
fi
|