[Tests] Split functional tests by Gradle tasks
KT-55530
This commit is contained in:
committed by
Space Team
parent
f92558d1c3
commit
c3ea93f4a4
@@ -251,6 +251,24 @@ if (!kotlinBuildProperties.isInJpsBuildIdeaSync) {
|
||||
extendsFrom(configurations.getByName(testSourceSet.runtimeOnlyConfigurationName))
|
||||
}
|
||||
|
||||
targets.create("functionalRegressionTest") {
|
||||
testTask.configure {
|
||||
include("**/org/jetbrains/kotlin/gradle/regression/**")
|
||||
}
|
||||
}
|
||||
|
||||
targets.create("functionalIdeTest") {
|
||||
testTask.configure {
|
||||
include("**/org/jetbrains/kotlin/gradle/ide/**")
|
||||
}
|
||||
}
|
||||
|
||||
targets.create("functionalUnitTest") {
|
||||
testTask.configure {
|
||||
include("**/org/jetbrains/kotlin/gradle/unit/**")
|
||||
}
|
||||
}
|
||||
|
||||
targets.all {
|
||||
testTask.configure {
|
||||
dependsOnKotlinGradlePluginInstall()
|
||||
|
||||
Reference in New Issue
Block a user