mirror of
https://github.com/pestphp/pest.git
synced 2026-06-05 02:52:12 +02:00
wip
This commit is contained in:
@ -179,6 +179,12 @@ final class Tia implements AddsOutput, HandlesArguments, Terminable
|
||||
$result = $this->replayGraph->getResult($this->branch, $testId);
|
||||
|
||||
if ($result instanceof TestStatus) {
|
||||
if ($result->isFailure() || $result->isError()) {
|
||||
$this->executedCount++;
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
$this->replayedCount++;
|
||||
$assertions = $this->replayGraph->getAssertions($this->branch, $testId);
|
||||
$this->cachedAssertionsByTestId[$testId] = $assertions ?? 0;
|
||||
|
||||
Reference in New Issue
Block a user