File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -710,9 +710,6 @@ public function testProcessIsNotSignaled()
710
710
if ('\\' === \DIRECTORY_SEPARATOR ) {
711
711
$ this ->markTestSkipped ('Windows does not support POSIX signals ' );
712
712
}
713
- if (\PHP_VERSION_ID < 80300 && isset ($ _SERVER ['GITHUB_ACTIONS ' ])) {
714
- $ this ->markTestSkipped ('Transient on GHA with PHP < 8.3 ' );
715
- }
716
713
717
714
$ process = $ this ->getProcess ('echo foo ' );
718
715
$ process ->run ();
@@ -1689,6 +1686,9 @@ public function testNotIgnoringSignal()
1689
1686
if (!\function_exists ('pcntl_signal ' )) {
1690
1687
$ this ->markTestSkipped ('pnctl extension is required. ' );
1691
1688
}
1689
+ if (\PHP_VERSION_ID < 80300 && isset ($ _SERVER ['GITHUB_ACTIONS ' ])) {
1690
+ $ this ->markTestSkipped ('Transient on GHA with PHP < 8.3 ' );
1691
+ }
1692
1692
1693
1693
$ process = $ this ->getProcess (['sleep ' , '10 ' ]);
1694
1694
You can’t perform that action at this time.
0 commit comments