Changeset View
Changeset View
Standalone View
Standalone View
src/unit/engine/PytestTestEngine.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Very basic 'py.test' unit test engine wrapper. | * Very basic 'py.test' unit test engine wrapper. | ||||
| */ | */ | ||||
| final class PytestTestEngine extends ArcanistBaseUnitTestEngine { | final class PytestTestEngine extends ArcanistUnitTestEngine { | ||||
| public function run() { | public function run() { | ||||
| $working_copy = $this->getWorkingCopy(); | $working_copy = $this->getWorkingCopy(); | ||||
| $this->project_root = $working_copy->getProjectRoot(); | $this->project_root = $working_copy->getProjectRoot(); | ||||
| $junit_tmp = new TempFile(); | $junit_tmp = new TempFile(); | ||||
| $cover_tmp = new TempFile(); | $cover_tmp = new TempFile(); | ||||
| ▲ Show 20 Lines • Show All 121 Lines • Show Last 20 Lines | |||||