(regrtest_args)
| 13 | |
| 14 | |
| 15 | def main(regrtest_args): |
| 16 | args = [ |
| 17 | sys.executable, |
| 18 | "-m", |
| 19 | "test", |
| 20 | "--slow-ci", |
| 21 | ] |
| 22 | |
| 23 | args.extend(regrtest_args) |
| 24 | print(" ".join(args)) |
| 25 | |
| 26 | os.execv(sys.executable, args) |
| 27 | |
| 28 | |
| 29 | if __name__ == "__main__": |