8000 skip transient test on GitHub Actions · symfony/symfony@981236c · GitHub
[go: up one dir, main page]

Skip to content

Commit 981236c

Browse files
committed
skip transient test on GitHub Actions
1 parent 04738bc commit 981236c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Symfony/Component/Process/Tests/ProcessTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -710,6 +710,9 @@ 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+
}
713716

714717
$process = $this->getProcess('echo foo');
715718
$process->run();

0 commit comments

Comments
 (0)
0