diff options
author | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-08-19 08:29:48 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-08-19 10:18:59 +0200 |
commit | f960aec5bbd82ec9848de959299bff21ef26096d (patch) | |
tree | 833ae28bcd3c04b92b218be8ad2f1a2ba5ce5673 /apps/dav/tests/travis | |
parent | 3ccd69707e75c3d99156c41d8107621e07a01ded (diff) | |
download | nextcloud-server-f960aec5bbd82ec9848de959299bff21ef26096d.tar.gz nextcloud-server-f960aec5bbd82ec9848de959299bff21ef26096d.zip |
Move over to new CalDAVTester repo (#25859)
* Move over to new caldac tester repo
* no run.py anymore
Diffstat (limited to 'apps/dav/tests/travis')
-rw-r--r-- | apps/dav/tests/travis/caldav/install.sh | 12 | ||||
-rw-r--r-- | apps/dav/tests/travis/carddav/install.sh | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/apps/dav/tests/travis/caldav/install.sh b/apps/dav/tests/travis/caldav/install.sh index 9688ec660de..e0ac30c9e46 100644 --- a/apps/dav/tests/travis/caldav/install.sh +++ b/apps/dav/tests/travis/caldav/install.sh @@ -3,12 +3,12 @@ SCRIPT=`realpath $0` SCRIPTPATH=`dirname $SCRIPT` -if [ ! -f CalDAVTester/run.py ]; then - cd "$SCRIPTPATH" - git clone https://github.com/DeepDiver1975/CalDAVTester.git - cd "$SCRIPTPATH/CalDAVTester" - python run.py -s - cd "$SCRIPTPATH" +cd "$SCRIPTPATH" +if [ ! -f CalDAVTester/testcaldav.py ]; then + git clone https://github.com/apple/ccs-caldavtester.git CalDAVTester +fi +if [ ! -f pycalendar/setup.py ]; then + git clone https://github.com/apple/ccs-pycalendar.git pycalendar fi # create test user diff --git a/apps/dav/tests/travis/carddav/install.sh b/apps/dav/tests/travis/carddav/install.sh index fa5d141ce0d..db8b53bc861 100644 --- a/apps/dav/tests/travis/carddav/install.sh +++ b/apps/dav/tests/travis/carddav/install.sh @@ -3,12 +3,12 @@ SCRIPT=`realpath $0` SCRIPTPATH=`dirname $SCRIPT` -if [ ! -f CalDAVTester/run.py ]; then - cd "$SCRIPTPATH" - git clone https://github.com/DeepDiver1975/CalDAVTester.git - cd "$SCRIPTPATH/CalDAVTester" - python run.py -s - cd "$SCRIPTPATH" +cd "$SCRIPTPATH" +if [ ! -f CalDAVTester/testcaldav.py ]; then + git clone https://github.com/apple/ccs-caldavtester.git CalDAVTester +fi +if [ ! -f pycalendar/setup.py ]; then + git clone https://github.com/apple/ccs-pycalendar.git pycalendar fi # create test user |