Skip to content

Commit

Permalink
Migrate tests from DynaTest to JUnit5
Browse files Browse the repository at this point in the history
  • Loading branch information
mvysny committed Jan 31, 2025
1 parent ce44ee9 commit 71c035d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/kotlin/com/github/vokorm/MssqlDatabaseTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MssqlDatabaseTest {
fun setup() {
assumeDockerAvailable()
Assumptions.assumeTrue(isX86_64) { "MSSQL is only available on amd64: https://hub.docker.com/_/microsoft-mssql-server/ " }
Assumptions.assumeFalse(true) { "MSSQL tests fail to run on Github; don't know why, don't care" }
Assumptions.assumeTrue(false) { "MSSQL tests fail to run on Github; don't know why, don't care" }

container =
MSSQLServerContainer("mcr.microsoft.com/mssql/server:${DatabaseVersions.mssql}")
Expand Down

0 comments on commit 71c035d

Please sign in to comment.