Skip to content

Commit

Permalink
Add new params to run_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NQuinn27 committed Nov 12, 2024
1 parent 57d6826 commit 5b9ece8
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,12 @@ platform :ios do
destination: "OS=#{sim_version},name=iPhone 16",
result_bundle: true,
code_coverage: true,
output_directory: Dir.pwd + "/test_output"
output_directory: Dir.pwd + "/test_output",
xcargs: {
"ENABLE_TESTABILITY" => "YES"
},
xcodebuild_formatter: "xcresult",
result_bundle_path: Dir.pwd + "/test_output/PrimerSDKTests.xcresult"
)
end

Expand All @@ -150,7 +155,12 @@ platform :ios do
destination: "OS=#{sim_version},name=iPhone 16",
result_bundle: true,
code_coverage: true,
output_directory: Dir.pwd + "/test_output"
output_directory: Dir.pwd + "/test_output",
xcargs: {
"ENABLE_TESTABILITY" => "YES"
},
xcodebuild_formatter: "xcresult",
result_bundle_path: Dir.pwd + "/test_output/PrimerSDKTests.xcresult"
)
end

Expand Down

0 comments on commit 5b9ece8

Please sign in to comment.