Hello everyone, we are trying to run jvmTest based...
# multiplatform
m
Hello everyone, we are trying to run jvmTest based on Category
Copy code
tasks {
    named<Test>("jvmTest") {
        useJUnit {
            includeCategories("category_package_and_category_name")
        }
    }
}
but the filter is not taken into account and all the jvm tests are run.
r
First thought: are you sure
jvmTest
is of type
Test
? I would think it is, but who knows