There was an error while loading. Please reload this page.
1 parent 78bd117 commit 41dc7e0Copy full SHA for 41dc7e0
1 file changed
fastlane/Fastfile
@@ -8,7 +8,8 @@ TEST_DEVICE = 'iPhone 15'
8
platform :ios do
9
desc 'Builds the project and runs tests'
10
lane :test do
11
- device = create_simulator(TEST_RUNTIME, TEST_DEVICE)
+ # Don't waste time managing Simulators in CI
12
+ device = create_simulator(TEST_RUNTIME, TEST_DEVICE) unless is_ci
13
14
run_tests(
15
workspace: 'Aztec.xcworkspace',
@@ -30,7 +31,8 @@ platform :ios do
30
31
ensure_devices_found: true
32
)
33
- destroy_simulator(device)
34
35
+ destroy_simulator(device) unless is_ci
36
end
37
38
0 commit comments