From b35791358702cad070e902a9b4b9370176588a9a Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 18 Mar 2019 15:21:42 +0100 Subject: [PATCH] Improve startup speed of acceptance tests Signed-off-by: Joas Schilling --- tests/acceptance/run.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/tests/acceptance/run.sh b/tests/acceptance/run.sh index 366e7a67bf..3e7e0a570f 100755 --- a/tests/acceptance/run.sh +++ b/tests/acceptance/run.sh @@ -147,7 +147,18 @@ function prepareDocker() { # "docker cp" does not take them into account (the extracted files are set # to root). echo "Copying local Git working directory of Nextcloud to the container" - tar --create --file="$NEXTCLOUD_LOCAL_TAR" --exclude=".git" --exclude="./build" --exclude="./config/config.php" --exclude="./data" --exclude="./data-autotest" --exclude="./tests" --exclude="./apps-extra" --exclude="apps-writable" --directory=../../ . + tar --create --file="$NEXTCLOUD_LOCAL_TAR" \ + --exclude=".git" \ + --exclude="./build" \ + --exclude="./config/config.php" \ + --exclude="./data" \ + --exclude="./data-autotest" \ + --exclude="./tests" \ + --exclude="./apps-extra" \ + --exclude="./apps-writable" \ + --exclude="node_modules" \ + --directory=../../ \ + . tar --append --file="$NEXTCLOUD_LOCAL_TAR" --directory=../../ tests/acceptance/ docker exec $NEXTCLOUD_LOCAL_CONTAINER mkdir /nextcloud