ci: Skip flaky test on PHP 8.3

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/47388/head
Joas Schilling 2024-08-21 13:13:12 +07:00
parent d5140fe034
commit e1caa198e3
No known key found for this signature in database
GPG Key ID: 74434EFE0D2E2205
1 changed files with 4 additions and 0 deletions

@ -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();