From 25820403e2db94b49475509357549efbc4062213 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Guitaut?= Date: Tue, 15 Sep 2015 23:05:56 +0200 Subject: [PATCH] Add compatibility for tests with dokku 0.4+ --- tests/test_helper.bash | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_helper.bash b/tests/test_helper.bash index 68827a6..4138720 100644 --- a/tests/test_helper.bash +++ b/tests/test_helper.bash @@ -5,6 +5,9 @@ export DOKKU_VERSION=${DOKKU_VERSION:-"master"} export PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/bin:$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/dokku:$PATH" export PLUGIN_COMMAND_PREFIX="postgres" export PLUGIN_PATH="$DOKKU_ROOT/plugins" +export PLUGIN_ENABLED_PATH="$PLUGIN_PATH" +export PLUGIN_AVAILABLE_PATH="$PLUGIN_PATH" +export PLUGIN_CORE_AVAILABLE_PATH="$PLUGIN_PATH" export PLUGIN_DATA_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/fixtures" mkdir -p "$PLUGIN_DATA_ROOT"