File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
# jobs for functional test
2
2
parameters :
3
- vmImage : ' macOS-11 '
4
- vmImageForIOS : ' macOS-11 '
5
- xcodeForIOS : 13 .2
6
- xcodeForTVOS : 13 .2
3
+ vmImage : ' macOS-12 '
4
+ vmImageForIOS : ' macOS-12 '
5
+ xcodeForIOS : 14 .2
6
+ xcodeForTVOS : 14 .2
7
7
androidSDK : 29 # API Level 30 emulators are more unstable than 29
8
8
appiumVersion : ' next' # for appium 2 upstream
9
9
ignoreVersionSkip : true
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ def self.mac2
123
123
124
124
# Require a simulator which OS version is 11.4, for example.
125
125
def ios ( platform_name = :ios )
126
- platform_version = '15 .2'
126
+ platform_version = platform_name . downcase == :tvos ? '16.0' : '16 .2'
127
127
wda_port = wda_local_port
128
128
129
129
real_device = ENV [ 'REAL' ] ? true : false
@@ -150,7 +150,8 @@ def ios(platform_name = :ios)
150
150
processArguments : { args : %w( happy tseting ) , env : { HAPPY : 'testing' } } ,
151
151
screenshotQuality : 2 , # The lowest quality screenshots
152
152
connectHardwareKeyboard : false ,
153
- maxTypingFrequency : 200
153
+ maxTypingFrequency : 200 ,
154
+ simulatorStartupTimeout : 600_000
154
155
} ,
155
156
appium_lib : {
156
157
export_session : true ,
You can’t perform that action at this time.
0 commit comments