Merge pull request #201 from owncloud/fix-skeleton-path

[Tests-only] Fix skeleton directory path
This commit is contained in:
Dipak Acharya
2020-05-14 11:32:57 +05:45
committed by GitHub
+2 -2
View File
@@ -175,10 +175,10 @@ def testing(ctx):
'TEST_EXTERNAL_USER_BACKENDS':'true', 'TEST_EXTERNAL_USER_BACKENDS':'true',
'TEST_OCIS':'true', 'TEST_OCIS':'true',
'OCIS_REVA_DATA_ROOT': '/srv/app/tmp/reva/', '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'
}, },
'commands': [ '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', 'git clone -b master --depth=1 https://github.com/owncloud/core.git /srv/app/testrunner',
'cd /srv/app/testrunner', 'cd /srv/app/testrunner',
'make test-acceptance-api' 'make test-acceptance-api'