Optimize CI #82

Merged
flecomte merged 5 commits from lint into master 2021-03-25 02:07:52 +01:00
2 changed files with 31 additions and 25 deletions
Showing only changes of commit 09e81620a1 - Show all commits

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"