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 =