Skip to content

Commit

Permalink
fix: set fastlane tests to run one at a time instead of concurrently
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushalkapasi committed Apr 10, 2024
1 parent 214584f commit cdbffeb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ platform :ios do
buildlog_path: "./fastlane/fastlane-buildlog",
scheme: "DevCycle",
workspace: "DevCycle.xcworkspace",
disable_concurrent_testing: true,
result_bundle: true
)
end
Expand All @@ -64,6 +65,7 @@ platform :tvos do
buildlog_path: "./fastlane/fastlane-buildlog",
scheme: "DevCycle",
workspace: "DevCycle.xcworkspace",
disable_concurrent_testing: true,
result_bundle: true
)
end
Expand All @@ -76,6 +78,7 @@ platform :watchos do
derived_data_path: "~/Library/Developer/Xcode/DerivedData",
buildlog_path: "./fastlane/fastlane-buildlog",
scheme: "DevCycle",
disable_concurrent_testing: true,
result_bundle: true
)
end
Expand Down Expand Up @@ -108,6 +111,7 @@ platform :mac do
scan(
scheme: "DevCycle",
workspace: "DevCycle.xcworkspace",
disable_concurrent_testing: true,
destination: "platform=macOS"
)

Expand Down

0 comments on commit cdbffeb

Please sign in to comment.