From b81e42e7e767574b3f9a6eb4bc7851210eeb3ac6 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Fri, 20 May 2016 00:48:32 -0700 Subject: [PATCH] Test pattern should be **/*.class under the test directory. --- .../src/main/kotlin/com/beust/kobalt/TestDirective.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/TestDirective.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/TestDirective.kt index ecc29809..abd624cc 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/TestDirective.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/TestDirective.kt @@ -6,7 +6,7 @@ import com.beust.kobalt.api.annotation.Directive class TestConfig(val project: Project) { val testArgs = arrayListOf() val jvmArgs = arrayListOf() - val testIncludes = arrayListOf("**/*Test.class") + val testIncludes = arrayListOf("**/*.class") val testExcludes = arrayListOf() var name: String = ""