Aggregate coroutines tests under 'check' task instead of 'test'

Otherwise --tests "pattern" gradle option has problem as it's applied
to both 'test' and `coroutinesTest` tasks and fails to match tests in one of them
This commit is contained in:
Ilya Gorbunov
2018-08-02 22:31:08 +03:00
parent b68c27178d
commit b412143fce
+1 -1
View File
@@ -239,7 +239,7 @@ task coroutinesTest(type: Test, dependsOn: coroutinesTestClasses) {
classpath = sourceSets.coroutinesTest.runtimeClasspath
}
test.dependsOn coroutinesTest
check.dependsOn(coroutinesTest)
compileUnsignedKotlin {
kotlinOptions {