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]} 🎉")