Skip to content

Commit

Permalink
test: don't capture the output of aws s3 sync
Browse files Browse the repository at this point in the history
Let's print the whole thing for better troubleshooting.
  • Loading branch information
achilleas-k authored and supakeen committed Jan 18, 2024
1 parent 7484f19 commit 366d846
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/scripts/imgtestlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,11 @@ def dl_s3_configs(destination, distro=None, arch=None):
"--exclude=*",
"--include=*/info.json",
s3url, destination],
capture_output=True,
capture_output=False,
check=False)
ok = job.returncode == 0
if not ok:
print(f"⚠️ Failed to sync contents of {s3url}:")
print(job.stderr.decode())
return ok


Expand Down

0 comments on commit 366d846

Please sign in to comment.