(filename, test_type)
| 54 | |
| 55 | |
| 56 | def run_via_rustpython(filename, test_type): |
| 57 | env = os.environ.copy() |
| 58 | env["RUST_LOG"] = "info,cargo=error,jobserver=error" |
| 59 | env["RUST_BACKTRACE"] = "1" |
| 60 | |
| 61 | subprocess.check_call([RUSTPYTHON_BINARY, filename], env=env) |
| 62 | |
| 63 | |
| 64 | def create_test_function(cls, filename, method, test_type): |