From 3990b38b5b598a1c93987e1f2bc12ac3c4f8f9c3 Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 20 May 2013 10:13:53 -0700 Subject: [PATCH] Force Releeph to be installed during unit tests Summary: Fixes failure in "testApplicationInstalled" if this flag is off (as it is by default). Test Plan: Ran "testApplicationsInstalled" with this flag off. Reviewers: garoevans, btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D5979 --- src/infrastructure/testing/PhabricatorTestCase.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/infrastructure/testing/PhabricatorTestCase.php b/src/infrastructure/testing/PhabricatorTestCase.php index c2c6d72f08..98f8ae188d 100644 --- a/src/infrastructure/testing/PhabricatorTestCase.php +++ b/src/infrastructure/testing/PhabricatorTestCase.php @@ -96,6 +96,9 @@ abstract class PhabricatorTestCase extends ArcanistPhutilTestCase { $this->env->overrideEnvConfig( 'phabricator.uninstalled-applications', array()); + + // TODO: Remove this when we remove "releeph.installed". + $this->env->overrideEnvConfig('releeph.installed', true); } protected function didRunTests() {