From bcdb7e9a2c697b5890a789a28006678b06c22d2c Mon Sep 17 00:00:00 2001 From: Joshua Spence Date: Tue, 11 Aug 2015 07:04:16 +1000 Subject: [PATCH] Use the configuration driven unit test engine Summary: Ref T5568. Use the very-new, very-beta `ArcanistConfigurationDrivenUnitTestEngine` unit test engine. Test Plan: `arc unit` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Maniphest Tasks: T5568 Differential Revision: https://secure.phabricator.com/D13853 --- .arcconfig | 1 - .arcunit | 8 ++++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .arcunit diff --git a/.arcconfig b/.arcconfig index e6aa540bd3..f0fa152929 100644 --- a/.arcconfig +++ b/.arcconfig @@ -1,5 +1,4 @@ { "phabricator.uri": "https://secure.phabricator.com/", - "unit.engine": "PhutilUnitTestEngine", "load": ["src/"] } diff --git a/.arcunit b/.arcunit new file mode 100644 index 0000000000..860ee1aee2 --- /dev/null +++ b/.arcunit @@ -0,0 +1,8 @@ +{ + "engines": { + "phutil": { + "type": "phutil", + "include": "(\\.php$)" + } + } +}