fix parallel execution of test class that inherit other class with the same name

This commit is contained in:
Nikos Charalampidis
2023-03-29 13:02:18 +03:00
parent ba87e1fde8
commit 1965763cd0
9 changed files with 59 additions and 5 deletions

View File

@ -92,7 +92,7 @@ $bootPest = (static function (): void {
exit;
}
$exitCode = $application->runTest(trim($testPath));
$exitCode = $application->runTest(realpath(trim($testPath)));
fwrite($statusFile, (string) $exitCode);
fflush($statusFile);