From 1a86fcca7888401c8bdcdd391a82eb39c4e130d8 Mon Sep 17 00:00:00 2001 From: eikek Date: Tue, 21 Dec 2021 19:50:40 +0100 Subject: [PATCH] Enable tests again They were disabled due to network problems --- .../test/scala/docspell/store/migrate/MariaDbMigrateTest.scala | 2 +- .../scala/docspell/store/migrate/PostgresqlMigrateTest.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/store/src/test/scala/docspell/store/migrate/MariaDbMigrateTest.scala b/modules/store/src/test/scala/docspell/store/migrate/MariaDbMigrateTest.scala index 6ba5c30f..76d443fd 100644 --- a/modules/store/src/test/scala/docspell/store/migrate/MariaDbMigrateTest.scala +++ b/modules/store/src/test/scala/docspell/store/migrate/MariaDbMigrateTest.scala @@ -21,7 +21,7 @@ class MariaDbMigrateTest extends FunSuite with TestContainerForAll { override val containerDef: MariaDBContainer.Def = MariaDBContainer.Def(DockerImageName.parse("mariadb:10.5")) - test("mariadb empty schema migration".ignore) { + test("mariadb empty schema migration") { assume(Docker.existsUnsafe, "docker doesn't exist!") withContainers { cnt => val jdbc = diff --git a/modules/store/src/test/scala/docspell/store/migrate/PostgresqlMigrateTest.scala b/modules/store/src/test/scala/docspell/store/migrate/PostgresqlMigrateTest.scala index 55dd9df7..1125f69a 100644 --- a/modules/store/src/test/scala/docspell/store/migrate/PostgresqlMigrateTest.scala +++ b/modules/store/src/test/scala/docspell/store/migrate/PostgresqlMigrateTest.scala @@ -21,7 +21,7 @@ class PostgresqlMigrateTest extends FunSuite with TestContainerForAll { override val containerDef: PostgreSQLContainer.Def = PostgreSQLContainer.Def(DockerImageName.parse("postgres:13")) - test("postgres empty schema migration".ignore) { + test("postgres empty schema migration") { assume(Docker.existsUnsafe, "docker doesn't exist!") withContainers { cnt => val jdbc =