Return the absolute path to test file having *name*.
(name: str)
| 44 | |
| 45 | |
| 46 | def testfile(name: str): |
| 47 | """ |
| 48 | Return the absolute path to test file having *name*. |
| 49 | """ |
| 50 | return absjoin(test_file_dir, name) |
| 51 | |
| 52 | |
| 53 | def testfile_bytes(*segments: str): |
searching dependent graphs…