From 7466667c082e13453ee4f270062433878b2ed855 Mon Sep 17 00:00:00 2001 From: Luke Downing Date: Mon, 6 Feb 2023 23:07:40 +0000 Subject: [PATCH] WIP --- src/Plugins/Parallel/Paratest/WrapperRunner.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Plugins/Parallel/Paratest/WrapperRunner.php b/src/Plugins/Parallel/Paratest/WrapperRunner.php index 76a77fde..2644539f 100644 --- a/src/Plugins/Parallel/Paratest/WrapperRunner.php +++ b/src/Plugins/Parallel/Paratest/WrapperRunner.php @@ -96,8 +96,6 @@ final class WrapperRunner implements RunnerInterface public function run(): int { - $this->timer->start(); - ExcludeList::addDirectory(dirname(__DIR__)); TestResultFacade::init(); EventFacade::seal(); @@ -108,6 +106,9 @@ final class WrapperRunner implements RunnerInterface $this->printer->setTestCount($suiteLoader->testCount); $this->printer->start(); + + $this->timer->start(); + $this->startWorkers(); $this->assignAllPendingTests(); $this->waitForAllToFinish();