My (Android) product flavours have (almost) nothin...
# kotest
m
My (Android) product flavours have (almost) nothing to do with functionality, so running tests for each flavour is just a waste of time. Can I make tests run just once without putting them in a flavour specific directory?
s
testDebugUnitTest if you are using Gradle
m
Thank you. Yes, I'm using Gradle. I can (probably) see how to do that for platform specific tests, but it seems the way to run tests in commonTest (where most of my tests are) is to run "check" from the command line. How does this fit with your answer @stojan?
s
I'm not familiar with multiplatform... But the answer is probably Gradle specific, Not kotest specific