File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
StreamChatSwiftUITestsAppTests/Tests Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 41
41
strategy :
42
42
matrix :
43
43
include :
44
- - ios : 18.1
45
- xcode : 16.1 # fails on 16. 2
44
+ - ios : 18.2
45
+ xcode : 16.2
46
46
os : macos-15
47
47
device : " iPhone 16 Pro"
48
48
setup_runtime : false
Original file line number Diff line number Diff line change @@ -159,8 +159,6 @@ jobs:
159
159
- build-test-app-and-frameworks
160
160
env :
161
161
LAUNCH_ID : ${{ needs.allure_testops_launch.outputs.launch_id }}
162
- XCODE_VERSION : " 16.1" # fails on 16.2
163
- IOS_SIMULATOR_DEVICE : " iPhone 16 Pro (18.1)"
164
162
strategy :
165
163
matrix :
166
164
batch : [0, 1]
Original file line number Diff line number Diff line change @@ -7,10 +7,19 @@ import XCTest
7
7
final class Attachments_Tests : StreamTestCase {
8
8
9
9
override func setUpWithError( ) throws {
10
+ try XCTSkipIf ( ProcessInfo ( ) . operatingSystemVersion. majorVersion >= 18 ,
11
+ " Attachments tests freeze the test app on iOS > 18 " )
12
+
10
13
try super. setUpWithError ( )
11
14
addTags ( [ . coreFeatures] )
12
15
assertMockServer ( )
13
16
}
17
+
18
+ override func tearDownWithError( ) throws {
19
+ if ProcessInfo ( ) . operatingSystemVersion. majorVersion < 18 {
20
+ try super. tearDownWithError ( )
21
+ }
22
+ }
14
23
15
24
func test_uploadImage( ) throws {
16
25
linkToScenario ( withId: 310 )
You can’t perform that action at this time.
0 commit comments