Lines Matching defs:cmd
40 cmd = [sys.executable, "run.py"]
41 cmd.extend(sys.argv[1:]) # Skip argv[0]
42 sys.exit(subprocess.call(cmd))
363 cmd = ["coverage", cov_format]
365 cmd.extend(["--include", ",".join(includes)])
367 cmd.extend(["--omit", ",".join(omits)])
368 cmd.extend([cov_option, cov_dest])
370 print("Generating coverage report via: ", " ".join(cmd), file=sys.stderr)
371 if subprocess.Popen(cmd).wait() != 0:
485 cmd = ["newtask", "-c", str(os.getpid())]
486 ret = subprocess.call(cmd)