diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-06-19 20:59:34 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-06-19 21:08:39 +0200 |
commit | de61c7d302b411ede892c7530091ffbc2a893bae (patch) | |
tree | f6cae40467462445094bb189640cb9bf9b86b1c5 /tests/acceptance | |
parent | 2147c39cb0ea1aeaa7859d46b5a8a6cc9d8ce659 (diff) | |
download | nextcloud-server-de61c7d302b411ede892c7530091ffbc2a893bae.tar.gz nextcloud-server-de61c7d302b411ede892c7530091ffbc2a893bae.zip |
acceptence tests shall specify which branch to pick when cloning apps
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'tests/acceptance')
-rwxr-xr-x | tests/acceptance/run-local.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/acceptance/run-local.sh b/tests/acceptance/run-local.sh index cd63f287096..4da31e35e6c 100755 --- a/tests/acceptance/run-local.sh +++ b/tests/acceptance/run-local.sh @@ -64,6 +64,7 @@ if [ "$1" = "--acceptance-tests-dir" ]; then fi ACCEPTANCE_TESTS_CONFIG_DIR="../../$ACCEPTANCE_TESTS_DIR/config" +DEV_BRANCH="master" # "--timeout-multiplier N" option can be provided to set the timeout multiplier # to be used in ActorContext. @@ -195,7 +196,7 @@ ln --symbolic $(pwd) /var/www/html # Add Notifications app to the "apps" directory (unless it is already there). if [ ! -e "apps/notifications" ]; then - (cd apps && git clone --depth 1 https://github.com/nextcloud/notifications) + (cd apps && git clone --depth 1 --branch ${DEV_BRANCH} https://github.com/nextcloud/notifications) fi INSTALL_AND_CONFIGURE_SERVER_PARAMETERS="" |