From 05308dc03f734ab6778aaaa2b563eefea37b41fc Mon Sep 17 00:00:00 2001 From: Alexey Alter-Pesotskiy Date: Mon, 18 Nov 2024 15:13:15 +0000 Subject: [PATCH] Allure logs --- fastlane/Allurefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Allurefile b/fastlane/Allurefile index b4b905e73a1..b0751426b99 100755 --- a/fastlane/Allurefile +++ b/fastlane/Allurefile @@ -10,7 +10,7 @@ desc 'Upload test results to Allure TestOps' lane :allure_upload do |options| remove_duplicated_allure_results options[:launch_id] ||= ENV.fetch('LAUNCH_ID', nil) - allure_args = "-e #{allure_url} --project-id #{allure_project_id} --launch-id #{options[:launch_id]}" + allure_args = "--log DEBUG -e #{allure_url} --project-id #{allure_project_id} --launch-id #{options[:launch_id]}" sh("./allurectl launch reopen #{options[:launch_id]} || true") # to prevent allure from uploading results to a closed launch sh("env BRANCH_NAME='#{current_branch}' ./allurectl upload #{allure_args} #{allure_results_path} || true") UI.success("Check out test results in Allure TestOps: #{allure_url}/launch/#{options[:launch_id]} 🎉")