diff --git a/src/Console/Command.php b/src/Console/Command.php index cfd8f0d4..1d6ef21c 100644 --- a/src/Console/Command.php +++ b/src/Console/Command.php @@ -90,8 +90,6 @@ final class Command extends BaseCommand */ $this->arguments = AddsDefaults::to($this->arguments); - LoadStructure::in($this->testSuite->rootPath); - $testRunner = new TestRunner($this->arguments['loader']); $testSuite = $this->arguments['test']; @@ -127,6 +125,8 @@ final class Command extends BaseCommand */ public function run(array $argv, bool $exit = true): int { + LoadStructure::in($this->testSuite->rootPath); + $result = parent::run($argv, false); /*