From 35ce9d7c20aa1b7c69b8b77d6512a313331d76e5 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Mon, 23 Jun 2014 12:22:36 +0200 Subject: [PATCH] Add comment to document added configs' purpose --- scripts/travis_before_script.sh | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/scripts/travis_before_script.sh b/scripts/travis_before_script.sh index 7a63f7572c..5fb9e911c0 100755 --- a/scripts/travis_before_script.sh +++ b/scripts/travis_before_script.sh @@ -149,13 +149,14 @@ cat <<-EOF >> $MANTIS_BOOTSTRAP echo "Adding custom configuration options" sudo chmod 777 $MANTIS_CONFIG -cat <<-EOF >> $MANTIS_CONFIG - - \$g_allow_no_category = ON; - \$g_due_date_update_threshold = DEVELOPER; - \$g_due_date_view_threshold = DEVELOPER; - \$g_enable_project_documentation = ON; - \$g_time_tracking_enabled = ON; +cat <<-EOF >> $MANTIS_CONFIG + + # Configs required to ensure all PHPUnit tests are executed + \$g_allow_no_category = ON; + \$g_due_date_update_threshold = DEVELOPER; + \$g_due_date_view_threshold = DEVELOPER; + \$g_enable_project_documentation = ON; + \$g_time_tracking_enabled = ON; EOF step "Before-script execution completed successfully"