(filename, method, test_type)
| 32 | |
| 33 | |
| 34 | def perform_test(filename, method, test_type): |
| 35 | logger.info("Running %s via %s", filename, method) |
| 36 | if method == "cpython": |
| 37 | run_via_cpython(filename) |
| 38 | elif method == "rustpython": |
| 39 | run_via_rustpython(filename, test_type) |
| 40 | else: |
| 41 | raise NotImplementedError(method) |
| 42 | |
| 43 | |
| 44 | def run_via_cpython(filename): |
no test coverage detected