Skip to content

Commit 396083f

Browse files
committed
Skip gearman on PHP 8.1
1 parent 428e878 commit 396083f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/gearman/Tests/SkipIfGearmanExtensionIsNotInstalledTrait.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ public function setUp(): void
1010
$this->markTestSkipped('The gearman extension is not installed');
1111
}
1212

13+
if (PHP_VERSION_ID >= 80100) {
14+
// TODO: remove when https://github.com/php/pecl-networking-gearman/issues/16 is resolved
15+
$this->markTestSkipped('The gearman extension is not compatible with PHP 8.1');
16+
}
17+
1318
parent::setUp();
1419
}
1520
}

0 commit comments

Comments
 (0)