We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06fdfbc commit 18b8cb5Copy full SHA for 18b8cb5
1 file changed
RetryTrait.php
@@ -14,6 +14,12 @@ public function runBare()
14
parent::runBare();
15
16
return;
17
+ } catch (\PHPUnit_Framework_IncompleteTestError $e) {
18
+ throw $e;
19
+ } catch (\PHPUnit_Framework_SkippedTestError $e) {
20
21
+ } catch (\Throwable $e) {
22
+ // last one thrown below
23
} catch (\Exception $e) {
24
// last one thrown below
25
}
0 commit comments