Changeset View
Changeset View
Standalone View
Standalone View
src/unit/engine/NoseTestEngine.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Very basic 'nose' unit test engine wrapper. | * Very basic 'nose' unit test engine wrapper. | ||||
| * | * | ||||
| * Requires nose 1.1.3 for code coverage. | * Requires nose 1.1.3 for code coverage. | ||||
| */ | */ | ||||
| final class NoseTestEngine extends ArcanistBaseUnitTestEngine { | final class NoseTestEngine extends ArcanistUnitTestEngine { | ||||
| public function run() { | public function run() { | ||||
| $paths = $this->getPaths(); | $paths = $this->getPaths(); | ||||
| $affected_tests = array(); | $affected_tests = array(); | ||||
| foreach ($paths as $path) { | foreach ($paths as $path) { | ||||
| $absolute_path = Filesystem::resolvePath($path); | $absolute_path = Filesystem::resolvePath($path); | ||||
| ▲ Show 20 Lines • Show All 146 Lines • Show Last 20 Lines | |||||