Skip to content

Commit bdb75be

Browse files
author
Alexey Alter-Pesotskiy
committed
Fix allure_upload fastlane lane
1 parent a5b86ea commit bdb75be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastlane/Allurefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ desc 'Upload test results to Allure TestOps'
99
lane :allure_upload do |options|
1010
branch = github_run_details['head_branch']
1111
allure_args = "-e #{allure_endpoint} --project-id #{allure_project_id} --launch-id #{options[:launch_id]}"
12-
sh("./xcresults export test_output/StreamChatUITestsApp.xcresult #{allure_results_path} || true")
12+
sh("./xcresults export test_output/StreamChatSwiftUITestsApp.xcresult #{allure_results_path} || true")
1313
sh("./allurectl launch reopen #{options[:launch_id]} || true") # to prevent allure from uploading results to a closed launch
1414
sh("env BRANCH_NAME='#{branch}' ./allurectl upload #{allure_args} #{allure_results_path} || true")
1515
UI.success("Check out test results in Allure TestOps: #{allure_endpoint}/launch/#{options[:launch_id]} 🎉")

0 commit comments

Comments
 (0)