Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,当我离开机器时,我需要运行几个测试用例。用户脚本中是否有一种可能的方式来一个接一个地执行多个命令。即使之前的命令失败或抛出错误,以下命令也应该执行。
要运行的命令示例。
1) run.py -n test_app 2)run.py -n test_delete_app 3)run.py -n test_create_app
即使 1 失败, 2 也应该在 1 之后执行。
您可以一个接一个地运行多个命令命令,而不依赖于返回值,方法是用;'s 分隔它们:
;
run.py -n test_app; run.py -n test_delete_app; run.py -n test_create_app