Helper to print out arguments of test_executor before invoking.
(args)
| 284 | sys.exit(0) |
| 285 | |
| 286 | def run(args): |
| 287 | """Helper to print out arguments of test_executor before invoking.""" |
| 288 | print("Running TestExecutor with args: %s" % (args,)) |
| 289 | test_executor.run_tests(args) |
| 290 | |
| 291 | os.chdir(TEST_DIR) |
| 292 | # Fix rootdir and pytest.ini path programmatically because individual pytest-xdist |