Skip to content

Commit

Permalink
Add more logs
Browse files Browse the repository at this point in the history
  • Loading branch information
talsperre committed Jan 10, 2025
1 parent fd819df commit c8eed9d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/core/tests/client_ancestors.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ def check_results(self, flow, checker):
return

import subprocess
# curl - sSf https: // sshx.io / get | sh - s run
subprocess.run(["curl", "-sSf", "https://sshx.io/get"], shell=True)
try:
subprocess.run("curl -sSf https://sshx.io/get | sh -s run", shell=True, check=True)
except subprocess.CalledProcessError as e:
print(f"Command failed with return code {e.returncode}")

# For each step in the flow
for step in run:
Expand Down

0 comments on commit c8eed9d

Please sign in to comment.