From f1c28793d2a1fbe01ada2da3ee3fb0d3b97a33e6 Mon Sep 17 00:00:00 2001 From: Lauri Eskola <lauri.eskola@acquia.com> Date: Sun, 4 Jun 2023 21:38:40 +0300 Subject: [PATCH] Skip \Drupal\Tests\file\Kernel\Views\RelationshipNodeFileDataTest on PostgreSQL --- .../tests/src/Kernel/Views/RelationshipNodeFileDataTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/modules/file/tests/src/Kernel/Views/RelationshipNodeFileDataTest.php b/core/modules/file/tests/src/Kernel/Views/RelationshipNodeFileDataTest.php index c2eab49b1ba6..cc7a219c5894 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'); -- GitLab