Skip to content

Commit 85e4279

Browse files
committed
Skip gearman on PHP 8.1
1 parent 8f4520b commit 85e4279

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/gearman/Tests/SkipIfGearmanExtensionIsNotInstalledTrait.php

+5
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)