Skip to content

Commit acece5e

Browse files
committed
Merge branch '7.2' into 7.3
* 7.2: skip transient test on GitHub Actions skip transient test on GitHub Actions pass CURLOPT_INFILESIZE_LARGE only when supported
2 parents ed2c645 + d8f411f commit acece5e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Tests/ProcessTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1686,6 +1686,9 @@ public function testNotIgnoringSignal()
16861686
if (!\function_exists('pcntl_signal')) {
16871687
$this->markTestSkipped('pnctl extension is required.');
16881688
}
1689+
if (\PHP_VERSION_ID < 80300 && isset($_SERVER['GITHUB_ACTIONS'])) {
1690+
$this->markTestSkipped('Transient on GHA with PHP < 8.3');
1691+
}
16891692

16901693
$process = $this->getProcess(['sleep', '10']);
16911694

0 commit comments

Comments
 (0)