We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb92c41 commit bc13210Copy full SHA for bc13210
gradle/build.gradle.kts
@@ -33,7 +33,7 @@ val deployedPlayer by extra { "simpleclient-$gameName-$version.jar" }
33
val testingDir by extra { buildDir.resolve("tests") }
34
val documentedProjects = listOf("sdk", "plugin")
35
36
-val enableTestClient by extra { versionObject.minor > 0 }
+val enableTestClient by extra { arrayOf("check", "testTestClient").any { gradle.startParameter.taskNames.contains(it) } || versionObject.minor > 0 }
37
val enableIntegrationTesting = !project.hasProperty("nointegration") && (versionObject.minor > 0 || enableTestClient)
38
39
val doAfterEvaluate = ArrayList<(Project) -> Unit>()
0 commit comments