From e485b16d65012d7b6a405e89c741b9e8995c74f9 Mon Sep 17 00:00:00 2001 From: Deltik Date: Fri, 16 Feb 2018 17:32:07 -0600 Subject: [PATCH] APP_PATH is now customizable in config.yml Configuration option is "app_path" (string) --- config.sample.yml | 6 ++++-- e107 | 2 +- tests/_bootstrap.php | 10 +++++++++- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/config.sample.yml b/config.sample.yml index 1d7f89e26..0472fd41e 100644 --- a/config.sample.yml +++ b/config.sample.yml @@ -1,5 +1,9 @@ --- +# Path (absolute or relative) to the app intended to be tested +# Absolute path begins with "/"; relative path does not begin with "/" +app_path: 'e107/' + # Configure this section for automated test deployments to cPanel cpanel: @@ -22,8 +26,6 @@ manual: # URL to the app that you deployed manually; needed for acceptance tests url: 'http://set-this-if-running-acceptance-tests-manually.local' - dir: '/e107' - # Only MySQL/MariaDB is supported db: # Hostname or IP address; use 'localhost' for a local server diff --git a/e107 b/e107 index fd7b9e352..7ffb60c60 160000 --- a/e107 +++ b/e107 @@ -1 +1 @@ -Subproject commit fd7b9e352e0b72b797c9b109c47dbe0dd8351fc5 +Subproject commit 7ffb60c60b258efea1b1b69f6e49b8f02c12db18 diff --git a/tests/_bootstrap.php b/tests/_bootstrap.php index 6d3edc0bc..2950c7b79 100644 --- a/tests/_bootstrap.php +++ b/tests/_bootstrap.php @@ -1,3 +1,11 @@