Returns tuple of file paths for the input and output of a test.
(test_file_suffix)
| 184 | raise e |
| 185 | |
| 186 | def get_io_paths(test_file_suffix): |
| 187 | """ Returns tuple of file paths for the input and output of a test. """ |
| 188 | i = os.path.join(_BASELINE_DIR, 'test_query_inputs', 'input_%s' % test_file_suffix) |
| 189 | o = os.path.join(_BASELINE_DIR, 'test_query_baseline', 'baseline_%s' % test_file_suffix) |
| 190 | return (i, o) |
no outgoing calls
no test coverage detected