Skip to content

Commit

Permalink
chore: Make the default gradle test passing (#2683)
Browse files Browse the repository at this point in the history
Instead of running multiple gradle jobs sequentially

Co-authored-by: StaNov <[email protected]>
  • Loading branch information
StaNov and StaNov authored Nov 13, 2024
1 parent 62b95f3 commit 306a6c5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,14 @@ project(':server-app').afterEvaluate {
}
}

// Tests of `ee-test` collide with tests of `server-app`, therefore we run them sequentially.
// It would be great to make the tests not collide and therefore this block of code can be deleted.
gradle.projectsEvaluated {
project(':server-app').tasks.withType(Test) {
dependsOn project(':ee-test').tasks.withType(Test)
}
}

ktlint {
debug = true
verbose = true
Expand Down

0 comments on commit 306a6c5

Please sign in to comment.