aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-08-21 13:13:12 +0200
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2024-08-21 13:55:13 +0000
commiteea5378344907adc5c07d9d2d878d6fcaf7cc3e6 (patch)
treefcc78673a0b90326fe87999a595b7bfc85585b70 /tests
parent1766bff1eda7735848f3e80e07c90ec2ec612aba (diff)
downloadnextcloud-server-eea5378344907adc5c07d9d2d878d6fcaf7cc3e6.tar.gz
nextcloud-server-eea5378344907adc5c07d9d2d878d6fcaf7cc3e6.zip
ci: Skip flaky test on PHP 8.3
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Files/ObjectStore/S3Test.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/Files/ObjectStore/S3Test.php b/tests/lib/Files/ObjectStore/S3Test.php
index cc3e91a4586..c35298fe408 100644
--- a/tests/lib/Files/ObjectStore/S3Test.php
+++ b/tests/lib/Files/ObjectStore/S3Test.php
@@ -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();