Returns the path to the directory for test outputs.
()
| 32 | |
| 33 | |
| 34 | def get_tests_output_path(): |
| 35 | """Returns the path to the directory for test outputs.""" |
| 36 | path = os.path.join(get_tests_path(), "outputs") |
| 37 | os.makedirs(path, exist_ok=True) |
| 38 | return path |
| 39 | |
| 40 | |
| 41 | def run_cli(command): |
searching dependent graphs…