mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-22 20:51:09 +01:00
Fix arc unit --everything
Summary: This was broken in D13573. Test Plan: Ran `arc unit --everything` in rPHU. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D13864
This commit is contained in:
parent
e00e2939c1
commit
01c3f41207
1 changed files with 4 additions and 2 deletions
|
@ -80,9 +80,11 @@ final class PhutilUnitTestEngine extends ArcanistUnitTestEngine {
|
||||||
private function getAllTests() {
|
private function getAllTests() {
|
||||||
$project_root = $this->getWorkingCopy()->getProjectRoot();
|
$project_root = $this->getWorkingCopy()->getProjectRoot();
|
||||||
|
|
||||||
$symbols = id(new PhutilClassMapQuery())
|
$symbols = id(new PhutilSymbolLoader())
|
||||||
|
->setType('class')
|
||||||
->setAncestorClass('PhutilTestCase')
|
->setAncestorClass('PhutilTestCase')
|
||||||
->execute();
|
->setConcreteOnly(true)
|
||||||
|
->selectSymbolsWithoutLoading();
|
||||||
|
|
||||||
$in_working_copy = array();
|
$in_working_copy = array();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue