From 0186a20e104024c423b861e8e0bbb2ec8ae61a5f Mon Sep 17 00:00:00 2001 From: mhsdesign <85400359+mhsdesign@users.noreply.github.com> Date: Mon, 25 Sep 2023 08:27:15 +0200 Subject: [PATCH] TASK: Remove outdated `setup.sh` --- .../TestDistribution/setup.sh | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100755 Tests/IntegrationTests/TestDistribution/setup.sh diff --git a/Tests/IntegrationTests/TestDistribution/setup.sh b/Tests/IntegrationTests/TestDistribution/setup.sh deleted file mode 100755 index 58d012cdbd..0000000000 --- a/Tests/IntegrationTests/TestDistribution/setup.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bash - -set -e - -# This script setups the Neos Test Distribution in order to be able to run E2E tests -# Please make sure to adjust the database settings in Configuration/Settings.yaml - -composer install -cd Packages/Application/Neos.Neos.Ui -make setup -cd ../../.. -./flow doctrine:migrate -./flow flow:cache:flush -./flow user:create --username=admin --password=password --first-name=John --last-name=Doe --roles=Administrator || true - -echo "" -echo "The setup is complete!" -echo "To run E2E test suite execute:" -echo " cd Packages/Application/Neos.Neos.Ui && make test-e2e" -echo "" - -./flow server:run --port 8081