File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
src/Illuminate/Testing/Concerns Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 105
105
"pda/pheanstalk" : " ^4.0" ,
106
106
"phpstan/phpdoc-parser" : " ^1.15" ,
107
107
"phpstan/phpstan" : " ^1.4.7" ,
108
- "phpunit/phpunit" : " ^9.6.0 || ^10.0.1 " ,
108
+ "phpunit/phpunit" : " ^9.6.0 || ^10.0.7 " ,
109
109
"predis/predis" : " ^2.0.2" ,
110
110
"symfony/cache" : " ^6.2" ,
111
111
"symfony/http-client" : " ^6.2.4"
Original file line number Diff line number Diff line change @@ -116,14 +116,16 @@ public function execute(): int
116
116
});
117
117
118
118
try {
119
- $ this ->runner ->run ();
119
+ $ potentialExitCode = $ this ->runner ->run ();
120
120
} finally {
121
121
$ this ->forEachProcess (function () {
122
122
ParallelTesting::callTearDownProcessCallbacks ();
123
123
});
124
124
}
125
125
126
- return $ this ->getExitCode ();
126
+ return $ potentialExitCode === null
127
+ ? $ this ->getExitCode ()
128
+ : $ potentialExitCode ;
127
129
}
128
130
129
131
/**
You can’t perform that action at this time.
0 commit comments