Remove extraneous newline from reproducer output (#48076)

* Remove extraneous newline from reproducer output

* Convert print -> tty.info
This commit is contained in:
kwryankrattiger 2024-12-13 02:38:43 -06:00 committed by GitHub
parent ef615bcc7e
commit 0c2b546825
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -624,7 +624,7 @@ def download_and_extract_artifacts(url, work_dir):
url (str): Complete url to artifacts.zip file url (str): Complete url to artifacts.zip file
work_dir (str): Path to destination where artifacts should be extracted work_dir (str): Path to destination where artifacts should be extracted
""" """
tty.msg(f"Fetching artifacts from: {url}\n") tty.msg(f"Fetching artifacts from: {url}")
headers = {"Content-Type": "application/zip"} headers = {"Content-Type": "application/zip"}
@ -694,8 +694,8 @@ def setup_spack_repro_version(repro_dir, checkout_commit, merge_commit=None):
""" """
# figure out the path to the spack git version being used for the # figure out the path to the spack git version being used for the
# reproduction # reproduction
print(f"checkout_commit: {checkout_commit}") tty.info(f"checkout_commit: {checkout_commit}")
print(f"merge_commit: {merge_commit}") tty.info(f"merge_commit: {merge_commit}")
dot_git_path = os.path.join(spack.paths.prefix, ".git") dot_git_path = os.path.join(spack.paths.prefix, ".git")
if not os.path.exists(dot_git_path): if not os.path.exists(dot_git_path):
@ -941,7 +941,7 @@ def reproduce_ci_job(url, work_dir, autostart, gpg_url, runtime):
"Failed to automatically setup the tested version of spack " "Failed to automatically setup the tested version of spack "
"in your local reproduction directory." "in your local reproduction directory."
) )
print(setup_msg) tty.info(setup_msg)
# In cases where CI build was run on a shell runner, it might be useful # In cases where CI build was run on a shell runner, it might be useful
# to see what tags were applied to the job so the user knows what shell # to see what tags were applied to the job so the user knows what shell