If I run `allTests` should it be running android u...
# gradle
e
If I run
allTests
should it be running android unit tests?
c
Not 100% sure, but I believe so, yes.
You can also run
check
to run "everything that validates the quality of the app" (unit tests, integration tests, linters…)
e
I like to split the tasks in check across different runners in my CI so it finishes faster. Doesn't look like Android tests are getting run though 🤔