ci: Skip flaky test on PHP 8.3

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2024-08-21 13:13:12 +02:00
parent d5140fe034
commit e1caa198e3
No known key found for this signature in database
GPG key ID: 74434EFE0D2E2205

View file

@ -134,6 +134,10 @@ class S3Test extends ObjectStoreTest {
/** @dataProvider dataFileSizes */
public function testFileSizes($size) {
if (str_starts_with(PHP_VERSION, '8.3') && getenv('CI')) {
$this->markTestSkipped('Test is unreliable and skipped on 8.3');
}
$this->cleanupAfter('testfilesizes');
$s3 = $this->getInstance();