File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -81,9 +81,6 @@ kotlin {
81
81
}
82
82
83
83
val supportIosTarget = project.property(" skipIosTarget" ) != " true"
84
- val runIosTests = project.property(" firebase-auth.skipIosTests" ) != " true"
85
-
86
- println (" supportIosTarget: $supportIosTarget runIosTests $runIosTests " )
87
84
if (supportIosTarget) {
88
85
89
86
fun nativeTargetConfig (): KotlinNativeTarget .() -> Unit = {
@@ -183,10 +180,13 @@ kotlin {
183
180
184
181
val jsMain by getting
185
182
}
183
+ }
186
184
187
- if (! runIosTests) {
188
- tasks.forEach {
189
- if (it.name.contains(" ios" ) && it.name.contains(" test" )) { it.enabled = false }
185
+ if (project.property(" firebase-auth.skipIosTests" ) == " true" ) {
186
+ tasks.forEach {
187
+ if (it.name.contains(" ios" ) && it.name.contains(" test" )) {
188
+ println (" Skipping ${it.name} " )
189
+ it.enabled = false
190
190
}
191
191
}
192
192
}
You can’t perform that action at this time.
0 commit comments