8000 minor #59700 [Process] skip transient test on GitHub Actions (xabbuh) · symfony/symfony@d7a1cdf · GitHub
[go: up one dir, main page]

Skip to content

Commit d7a1cdf

Browse files
minor #59700 [Pr 8000 ocess] skip transient test on GitHub Actions (xabbuh)
This PR was merged into the 7.2 branch. Discussion ---------- [Process] skip transient test on GitHub Actions | Q | A | ------------- | --- | Branch? | 7.2 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | | License | MIT same as #59690 for a transient test that was introduced with Symfony 7.1 in #53968 Commits ------- 981236c skip transient test on GitHub Actions
2 parents 04738bc + 981236c commit d7a1cdf

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