Skip to content

Commit

Permalink
Don't do retries on record
Browse files Browse the repository at this point in the history
  • Loading branch information
testableapple committed Nov 7, 2023
1 parent 0ec9b16 commit b86f9a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ lane :test_ui do |options|
devices: options[:device],
build_for_testing: options[:build_for_testing],
skip_build: options[:skip_build],
number_of_retries: 1,
number_of_retries: options[:record].to_s.empty? ? 1 : nil,
xcargs: buildcache_xcargs,
fail_build: options[:record].to_s.empty?
)
Expand Down

0 comments on commit b86f9a6

Please sign in to comment.