Skip to content

Commit

Permalink
ci: Skip flaky test on PHP 8.3
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Aug 21, 2024
1 parent d5140fe commit e1caa19
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/lib/Files/ObjectStore/S3Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ public function dataFileSizes() {

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

Expand Down

0 comments on commit e1caa19

Please sign in to comment.