import time tic = time.time() import exec exec.run() tac = time.time() delay = tac - tic print(f'Recognised in {delay} seconds')
def test_exec_7(self): exec.configure( arg_reporting_option=exec.REPORTING_OPT_STDERR_STDOUT_PROGRESS) exec.run(["tree", "/home/robert"])
def test_exec_2(self): exec.configure(arg_dry_run=True) exec.run(["ls"])
def test_exec_6(self): exec.configure(arg_reporting_option=exec.REPORTING_OPT_STDERR_ONLY) exec.run(["ls"])
def test_exec_1(self): exec.configure() exec.run(["ls"])