1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-10 00:42:40 +01:00

Merge branch 'NoseTestEverything'

This commit is contained in:
Mukunda Modell 2016-01-25 04:13:51 -06:00
commit cb270ac0ee

View file

@ -9,7 +9,16 @@ final class NoseTestEngine extends ArcanistUnitTestEngine {
private $parser;
protected function supportsRunAllTests() {
return true;
}
public function run() {
if ($this->getRunAllTests()) {
$root = $this->getWorkingCopy()->getProjectRoot();
return $this->runTests(array($root), './');
}
$paths = $this->getPaths();
$affected_tests = array();