Skip to content

Commit

Permalink
Fix Fastlane test devices
Browse files Browse the repository at this point in the history
Launching iPhone 5s simulator is unreliable and often causes tests to fail. Upgraded iOS 9 device to iPhone 6s
  • Loading branch information
fjcaetano committed Nov 12, 2018
1 parent 59c5223 commit d0af0f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d0af0f6

Please sign in to comment.