when building my KMM project it runs any tests tha...
# multiplatform
j
when building my KMM project it runs any tests that there are. I comment the test out when trying to do a build but but I don't want to keep having to do that is there a way to build without running the tests?
r
Add
-x allTests
to your gradle command. It just skips that task, so you can customize as needed
👍 2