Fix Fastlane test devices

Launching iPhone 5s simulator is unreliable and often causes tests to fail. Upgraded iOS 9 device to iPhone 6s
This commit is contained in:
Flávio Caetano 2018-11-12 15:02:34 -02:00
parent 59c5223580
commit d0af0f686b
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ platform :ios do
devices = ["iPhone XR (~> 12)"]
devices << "iPhone X (~> 11)" if !Helper.is_ci?
devices << "iPhone 7 (~> 10)" if !Helper.is_ci?
devices << "iPhone 5s (~> 9)" if !Helper.is_ci?
devices << "iPhone 6s (~> 9)" if !Helper.is_ci?
desc "Runs the following lanes:\n- test\n- pod_lint\n- carthage_lint"
lane :ci do