You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When executing ./gradlew app:runFlankReleaseVariantTests from the configuration below, I noticed that orchestrator was still set to false (the default), despite the fact that it was set to true at the top-level scope:
fladle {
useOrchestrator.set(true) // PROBLEM: not being propagated down
configs {
create("releaseVariantTests") {
debugApk.set(project.provider { "$buildDir/outputs/apk/internal/release/$apkName" })
instrumentationApk.set("$buildDir/outputs/apk/androidTest/internal/release/$testApkName")
devices.set(listOf(mapOf("model" to "walleye" /* pixel2 */, "version" to "27"))) //
testTargets.set(listOf("package slack.external"))
}
}
}
Running the fladle kotlin (sample)[https://github.com/runningcode/fladle/blob/master/sample-kotlin/build.gradle.kts] should repro this error.
The text was updated successfully, but these errors were encountered:
When executing
./gradlew app:runFlankReleaseVariantTests
from the configuration below, I noticed that orchestrator was still set to false (the default), despite the fact that it was set to true at the top-level scope:Running the fladle kotlin (sample)[https://github.com/runningcode/fladle/blob/master/sample-kotlin/build.gradle.kts] should repro this error.
The text was updated successfully, but these errors were encountered: