From 04aa029cd3f16dc17f06e5a7e11eba5fc07eb2e7 Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Fri, 9 Nov 2012 17:49:06 +0100 Subject: [PATCH] Disable loading apps before starting tests The tests it self should load the app if needed --- tests/bootstrap.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 4080a974be..115a15883a 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -1,5 +1,7 @@ <?php +global $RUNTIME_NOAPPS; +$RUNTIME_NOAPPS = true; require_once __DIR__.'/../lib/base.php'; if(!class_exists('PHPUnit_Framework_TestCase')) { -- GitLab