Skip to content

Commit

Permalink
Use legacy results for iOS by default (#783)
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelpasterz authored May 14, 2020
1 parent 88f336d commit 2b82053
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion release_notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## next (unreleased)
-
- [#783](https://github.com/Flank/flank/pull/783) Use legacy results for iOS by default. ([pawelpasterz](https://github.com/pawelpasterz))

## v20.05.1

Expand Down
2 changes: 2 additions & 0 deletions test_runner/src/main/kotlin/ftl/args/IosArgs.kt
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ class IosArgs(
override val networkProfile = cli?.networkProfile ?: gcloud.networkProfile
override val ignoreFailedTests = cli?.ignoreFailedTests ?: flank.ignoreFailedTests
override val keepFilePath = cli?.keepFilePath ?: flank.keepFilePath
// currently, FTL does not provide API based results for iOS
override val useLegacyJUnitResult = true

private val iosFlank = iosFlankYml.flank
val testTargets = cli?.testTargets ?: iosFlank.testTargets.filterNotNull()
Expand Down
1 change: 1 addition & 0 deletions test_runner/src/test/kotlin/ftl/args/IosArgsTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ flank:
assert(flakyTestAttempts, 4)
assert(disableSharding, true)
assert(runTimeout, "15m")
assert(useLegacyJUnitResult, true)
}
}

Expand Down

0 comments on commit 2b82053

Please sign in to comment.