diff --git a/core/modules/file/tests/src/Kernel/Views/RelationshipNodeFileDataTest.php b/core/modules/file/tests/src/Kernel/Views/RelationshipNodeFileDataTest.php index c2eab49b1ba6d2aa4e1eddd38d23899c5b3c9927..cc7a219c5894458d6208e9d68fad12bfc879b9fa 100644 --- a/core/modules/file/tests/src/Kernel/Views/RelationshipNodeFileDataTest.php +++ b/core/modules/file/tests/src/Kernel/Views/RelationshipNodeFileDataTest.php @@ -4,6 +4,7 @@ namespace Drupal\Tests\file\Kernel\Views; +use Drupal\Core\Database\Database; use Drupal\field\Entity\FieldConfig; use Drupal\file\Entity\File; use Drupal\file\FileInterface; @@ -39,6 +40,10 @@ class RelationshipNodeFileDataTest extends ViewsKernelTestBase { protected function setUp($import_test_views = TRUE): void { parent::setUp($import_test_views); + if (Database::getConnection()->driver() === 'pgsql') { + $this->markTestSkipped('Skipped because PostgreSQL is currently failing: https://www.drupal.org/project/drupal/issues/3364621'); + } + $this->installSchema('file', 'file_usage'); $this->installEntitySchema('node'); $this->installEntitySchema('file');