Why do I see `iosSimTest` but not `iosTest` in my ...
# gradle
s
Why do I see
iosSimTest
but not
iosTest
in my project gradle tasks? Did that task use to be there or am I crazy?
Even when I run my tests with:
Copy code
gradlew iosBinaries iosSimBinaries allTests
instead of:
Copy code
gradlew iosBinaries iosSimBinaries iosSimTest
I still don't get the tests I have in
../src/iosTest/kotlin/...
to execute. It's the first time I add tests in
iosTest
, all my previous tests were under
commonTest
. Anyone knows what I'm doing wrong?
These tests are run with a DevOps agent that has a vmImage
macOS-10.14
. Does it mean that I have to put my tests under the module
iosSimTest
instead of
iosTest
?
I tried adding this in `build.gradle`:
Copy code
iosSimTest {
    dependencies {
        dependsOn iosTest
    }
}
but now I get this error when trying to run
compileTestKotlinIosSim
on my vmImage macOS-10.14:
Copy code
The target doesn't match. Expected 'ios_x64', found [ios_arm64]