you probably want to do `tasks.withType<Test&gt...
# gradle
o
you probably want to do
tasks.withType<Test>().named("test").configure
instead of
tasks.withType<Test>
-- the former selects only ":test", but the latter selects all
Test
tasks currently available