config = include('files_external/tests/config.amazons3.php'); if (! is_array($this->config) or ! $this->config['run']) { $this->markTestSkipped('AmazonS3 backend not configured'); } $this->instance = new AmazonS3($this->config + [ 'putSizeLimit' => 1, 'copySizeLimit' => 1, ]); } protected function tearDown(): void { if ($this->instance) { $this->instance->rmdir(''); } parent::tearDown(); } public function testStat() { $this->markTestSkipped('S3 doesn\'t update the parents folder mtime'); } public function testHashInFileName() { $this->markTestSkipped('Localstack has a bug with hashes in filename'); } }