aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-08-21 13:13:12 +0200
committerJoas Schilling <coding@schilljs.com>2024-08-21 13:13:12 +0200
commite1caa198e30693ac807c228c5048306e442f9240 (patch)
treee223eef1f4c643cafeffe25815549dbab092b97f /tests
parentd5140fe034f3e6ed58a40d9ece8ab52926448bbb (diff)
downloadnextcloud-server-e1caa198e30693ac807c228c5048306e442f9240.tar.gz
nextcloud-server-e1caa198e30693ac807c228c5048306e442f9240.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();