From 52b43678977f4be72c8d4ffea31d94627ae7577e Mon Sep 17 00:00:00 2001 From: HariBhandari07 Date: Thu, 14 May 2020 13:37:45 +0545 Subject: [PATCH] [Tests-only] Fix skeleton directory path --- .drone.star | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.star b/.drone.star index 29d35f45f..53c12f7ae 100644 --- a/.drone.star +++ b/.drone.star @@ -171,14 +171,14 @@ def testing(ctx): 'environment' : { 'TEST_SERVER_URL': 'http://ocis-server:9140', 'OCIS_REVA_DATA_ROOT': '/srv/app/tmp/reva/', - 'SKELETON_DIR': '/var/www/owncloud/server/apps/testing/data/apiSkeleton', + 'SKELETON_DIR': '/srv/app/tmp/testing/data/apiSkeleton', 'TEST_EXTERNAL_USER_BACKENDS':'true', 'REVA_LDAP_HOSTNAME':'ldap', 'TEST_OCIS':'true', 'BEHAT_FILTER_TAGS': '~@skipOnOcis&&~@skipOnLDAP&&@TestAlsoOnExternalUserBackend&&~@local_storage', }, 'commands': [ - 'git clone -b master --depth=1 https://github.com/owncloud/testing.git /var/www/owncloud/server/apps/testing', + 'git clone -b master --depth=1 https://github.com/owncloud/testing.git /srv/app/tmp/testing', 'git clone -b master --depth=1 https://github.com/owncloud/core.git /srv/app/testrunner', 'cd /srv/app/testrunner', 'make test-acceptance-api',