Skip to content

Commit 4b74b58

Browse files
authored
Fixed ci for swoole v6.0.0 (#6810)
1 parent 3fb5c6c commit 4b74b58

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Diff for: tests/Filesystem/FilesystemTest.php

+8
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ public function testLock()
5555
#[Group('NonCoroutine')]
5656
public function testFopenInCoroutine()
5757
{
58+
if (SWOOLE_VERSION_ID >= 60000) {
59+
$this->markTestSkipped();
60+
}
61+
5862
run(function () {
5963
$max = 2;
6064
$chan = new Channel($max);
@@ -89,6 +93,10 @@ public function testMakeDirection()
8993
#[Group('NonCoroutine')]
9094
public function testPutLockInCoroutine()
9195
{
96+
if (SWOOLE_VERSION_ID >= 60000) {
97+
$this->markTestSkipped();
98+
}
99+
92100
run(function () {
93101
$max = 3;
94102
$chan = new Channel($max);

0 commit comments

Comments
 (0)