nextcloud/apps/dav/tests/travis/caldav/script.sh

19 lines
491 B
Bash
Raw Normal View History

2015-12-18 18:59:57 +03:00
#!/usr/bin/env bash
SCRIPT=`realpath $0`
SCRIPTPATH=`dirname $SCRIPT`
# start the server
php -S 127.0.0.1:8888 -t "$SCRIPTPATH/../../../../.." &
2015-12-21 13:43:15 +03:00
sleep 30
2015-12-18 18:59:57 +03:00
# run the tests
cd "$SCRIPTPATH/CalDAVTester"
2016-01-12 15:33:29 +03:00
PYTHONPATH="$SCRIPTPATH/pycalendar/src" python testcaldav.py --print-details-onfail -s "$SCRIPTPATH/../caldavtest/serverinfo.xml" -o cdt.txt \
2015-12-18 15:51:34 +03:00
"$SCRIPTPATH/../caldavtest/tests/CalDAV/current-user-principal.xml"
2015-12-18 18:59:57 +03:00
RESULT=$?
tail "$/../../../../../data-autotest/owncloud.log"
exit $RESULT