From d0af0f686bbb07c9b37f838179225bfe7f8b7202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Caetano?= Date: Mon, 12 Nov 2018 15:02:34 -0200 Subject: [PATCH] Fix Fastlane test devices Launching iPhone 5s simulator is unreliable and often causes tests to fail. Upgraded iOS 9 device to iPhone 6s --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index d95a81d..0e6c0d3 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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