Skip to content

Commit d8f411f

Browse files
committed
skip transient test on GitHub Actions
1 parent 9e3b9d4 commit d8f411f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/ProcessTest.php

+3-3
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)