Mateusz Kaźmierczak
01/07/2025, 11:50 AM./gradlew test
launches only from main project modules tests. I need to write ./gradlew :composite-build:test
to launch tests from the composite build. Is there any way to just one command which launches all tests everywhere?Vampire
01/07/2025, 12:10 PMtasks.check {
dependsOn(gradle.includedBuild("composite-build").task(":test"))
}
or similar.