We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 496150b commit 9f0e897Copy full SHA for 9f0e897
community/flamingock-auditstore-sql/build.gradle.kts
@@ -40,7 +40,7 @@ configurations.testImplementation {
40
tasks.test {
41
// CI-specific configuration
42
val isCI = System.getenv("CI")?.toBoolean() ?: false
43
- val enabledDialects = System.getProperty("sql.test.dialects") ?: if (isCI) "mysql" else "mysql,oracle"
+ val enabledDialects = System.getProperty("sql.test.dialects") ?: if (isCI) "mysql,oracle" else "mysql,oracle,sqlserver"
44
45
systemProperty("sql.test.dialects", enabledDialects)
46
0 commit comments