Skip to content

Commit 18b8cb5

Browse files
committed
fix retry
1 parent 06fdfbc commit 18b8cb5

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

RetryTrait.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ public function runBare()
1414
parent::runBare();
1515

1616
return;
17+
} catch (\PHPUnit_Framework_IncompleteTestError $e) {
18+
throw $e;
19+
} catch (\PHPUnit_Framework_SkippedTestError $e) {
20+
throw $e;
21+
} catch (\Throwable $e) {
22+
// last one thrown below
1723
} catch (\Exception $e) {
1824
// last one thrown below
1925
}

0 commit comments

Comments
 (0)