diff --git a/drydocker/pykolab/test_integration.sh b/drydocker/pykolab/test_integration.sh old mode 100644 new mode 100755 index 52f8050..805eb0f --- a/drydocker/pykolab/test_integration.sh +++ b/drydocker/pykolab/test_integration.sh @@ -1,21 +1,22 @@ #!/bin/bash -pushd /srv/${PACKAGE}.git - source /srv/stick.git/drydocker/generic_integration.sh +# This installs Kolab Groupware +retval=$(_shell generic_integration_install) + +# This sets up Kolab Groupware retval=$(_shell generic_integration_setup) -if [ ${retval} -ne 0 ]; then - exit ${retval} -fi +set -x -pushd /srv/stick.git/integration/ -retval=$(_shell NOSE_VERBOSE=2 nosetests P/all.py) +pushd /srv/pykolab.git +NOSE_VERBOSE=2 nosetests tests/functional/ || exit 1 +popd + +set - -x if [ ${retval} -ne 0 ]; then exit ${retval} fi -popd -popd