hfhbd
01/13/2023, 2:11 PMenvironment
property to specify environment variables from Gradle. Is there any option to configure environment variables for Kotlin native tests too?tapchicoma
01/13/2023, 2:17 PMtasks.withType<org.jetbrains.kotlin.gradle.targets.native.tasks.KotlinNativeTest>().configureEach {
environment.put(...)
}
hfhbd
01/13/2023, 2:20 PMtasks.withType<org.jetbrains.kotlin.gradle.targets.native.tasks.KotlinNativeTest>().configureEach {
environment("KEY", "value")
}