`gradlew allTests` is not running `allTests` for ...
# multiplatform
j
gradlew allTests
is not running
allTests
for
androidTest
source set, so I have to use
gradlew test
, is there a way to force
allTests
to detect the android tests? I could do something like allTests dependsOn test but should be great
allTest
just works by default with them
Well, I think I should run
gradlew check
instead of
gradlew allTests
, it maybe is a shortcut for the dependsOn workaround I mentioned