From 7a76f8dce27c62fdd03ca960fffa251e0fe55fc5 Mon Sep 17 00:00:00 2001 From: luke Date: Thu, 5 Aug 2021 16:21:06 +0100 Subject: [PATCH] Further cleanup --- bin/pest | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/pest b/bin/pest index 4e7f94c2..75faf289 100755 --- a/bin/pest +++ b/bin/pest @@ -3,6 +3,7 @@ use NunoMaduro\Collision\Provider; use ParaTest\Console\Commands\ParaTestCommand; +use Pest\Actions\LoadStructure; use Pest\Actions\ValidatesEnvironment; use Pest\Console\Command; use Pest\Console\Paratest\Runner; @@ -62,6 +63,7 @@ use Symfony\Component\Console\Output\OutputInterface; $_SERVER['argv'][] = '--runner'; $_SERVER['argv'][] = Runner::class; + LoadStructure::in($testSuite->rootPath); exit(ParaTestCommand::applicationFactory($testSuite->rootPath)->run(new ArgvInput())); }