https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
f

FranGSierra

10/18/2019, 12:01 PM
Any way to run all the tests from all the platforms at once? When I try to do an
app -> Run all tests
there are no tests founds. I need to run individually the folders of each platform and on iOS case I need to run the gradle script for it. Any idea about how to unify this?
s

Sam Schilling

10/18/2019, 4:01 PM
I always just use gradle to run all tests at once
2
f

FranGSierra

10/18/2019, 4:19 PM
@Sam Schilling do you have an specific script for it? Because iOS runs on a different way on multiplataform projects(or maybe my project is not well configured. Could you share the script or how u have it configure? Thx so much!
s

Sam Schilling

10/18/2019, 4:21 PM
can you share the verification tasks you see when you run
gradle tasks --all
?
a

Arkadii Ivanov

10/18/2019, 8:58 PM
I always use "check" task to run tests for all platforms, or "testXxx" to run tests for a specific platform.
2 Views