File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Symfony/Component/Process/Tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -710,9 +710,6 @@ public function testProcessIsNotSignaled()
710710 if ('\\' === \DIRECTORY_SEPARATOR ) {
711711 $ this ->markTestSkipped ('Windows does not support POSIX signals ' );
712712 }
713- if (\PHP_VERSION_ID < 80300 && isset ($ _SERVER ['GITHUB_ACTIONS ' ])) {
714- $ this ->markTestSkipped ('Transient on GHA with PHP < 8.3 ' );
715- }
716713
717714 $ process = $ this ->getProcess ('echo foo ' );
718715 $ process ->run ();
@@ -1689,6 +1686,9 @@ public function testNotIgnoringSignal()
16891686 if (!\function_exists ('pcntl_signal ' )) {
16901687 $ this ->markTestSkipped ('pnctl extension is required. ' );
16911688 }
1689+ if (\PHP_VERSION_ID < 80300 && isset ($ _SERVER ['GITHUB_ACTIONS ' ])) {
1690+ $ this ->markTestSkipped ('Transient on GHA with PHP < 8.3 ' );
1691+ }
16921692
16931693 $ process = $ this ->getProcess (['sleep ' , '10 ' ]);
16941694
You can’t perform that action at this time.
0 commit comments