Skip to content

Commit c5e286f

Browse files
committed
fix retry
1 parent f147156 commit c5e286f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: pkg/test/RetryTrait.php

+6
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)