File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -64,17 +64,29 @@ sourceSets {
64
64
}
65
65
}
66
66
67
- task functionalTest (type : Test ) {
68
- description = ' Runs the functional tests .'
67
+ task crossScalaVersionFunctionalTest (type : Test ) {
68
+ description = ' Runs the cross scala version functional test .'
69
69
group = ' verification'
70
70
testClassesDirs = sourceSets. functionalTest. output. classesDirs
71
71
classpath = sourceSets. functionalTest. runtimeClasspath
72
+ include " **/ScalaMultiModuleCrossVersionTest.*"
72
73
73
74
testLogging. showStandardStreams = true
74
75
75
76
mustRunAfter test
76
77
}
77
78
79
+ task functionalTest (type : Test ) {
80
+ description = ' Runs the functional tests.'
81
+ group = ' verification'
82
+ testClassesDirs = sourceSets. functionalTest. output. classesDirs
83
+ classpath = sourceSets. functionalTest. runtimeClasspath
84
+ exclude " **/ScalaMultiModuleCrossVersionTest.*"
85
+
86
+ testLogging. showStandardStreams = true
87
+
88
+ dependsOn crossScalaVersionFunctionalTest
89
+ }
78
90
check. dependsOn functionalTest
79
91
80
92
gradlePlugin {
You can’t perform that action at this time.
0 commit comments