Merge pull request #47395 from nextcloud/backport/47388/stable30

[stable30] ci: Skip flaky test on PHP 8.3
This commit is contained in:
Andy Scherzinger 2024-08-21 17:40:24 +02:00 committed by GitHub
commit 40665faf3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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