287c28c
1
2
3
4
5
6
7
import os def run_cli(command): exit_status = os.system(command) assert exit_status == 0, f" [!] command `{command}` failed."