1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Test pattern should be **/*.class under the test directory.

This commit is contained in:
Cedric Beust 2016-05-20 00:48:32 -07:00
parent ee6b00df84
commit b81e42e7e7

View file

@ -6,7 +6,7 @@ import com.beust.kobalt.api.annotation.Directive
class TestConfig(val project: Project) {
val testArgs = arrayListOf<String>()
val jvmArgs = arrayListOf<String>()
val testIncludes = arrayListOf("**/*Test.class")
val testIncludes = arrayListOf("**/*.class")
val testExcludes = arrayListOf<String>()
var name: String = ""