rollback lintCheck after test, create task testAll

This commit is contained in:
2021-03-24 21:32:28 +01:00
parent fe953fc967
commit 09e81620a1
2 changed files with 31 additions and 25 deletions

View File

@@ -191,10 +191,16 @@ tasks.test {
useJUnitPlatform()
systemProperty("junit.jupiter.execution.parallel.enabled", true)
dependsOn(testSql)
finalizedBy(tasks.ktlintCheck)
finalizedBy(tasks.jacocoTestReport) // report is always generated after tests run
}
tasks.register("testAll") {
group = "verification"
dependsOn(testSql)
dependsOn(tasks.test)
dependsOn(tasks.ktlintCheck)
}
apply(plugin = "docker-compose")
dockerCompose {
projectName = "dc-project"