Skip to content
Snippets Groups Projects
Verified Commit 99b1114f authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Skip \Drupal\Tests\file\Kernel\Views\RelationshipUserFileDataTest on PostgreSQL

parent f1c28793
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@
namespace Drupal\Tests\file\Kernel\Views;
use Drupal\Core\Database\Database;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\file\Entity\File;
......@@ -50,6 +51,10 @@ class RelationshipUserFileDataTest 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('user');
$this->installEntitySchema('file');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment