From 90de43dc94e6bf05747e0dddd22e9e42e9127d98 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 19 Jun 2020 20:59:34 +0200 Subject: [PATCH] acceptence tests shall specify which branch to pick when cloning apps Signed-off-by: Arthur Schiwon --- tests/acceptance/run-local.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/acceptance/run-local.sh b/tests/acceptance/run-local.sh index cd63f28709..4c64ee6b08 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="stable19" # "--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=""