(filename, tests)
| 29 | |
| 30 | |
| 31 | def write_tests(filename, tests): |
| 32 | with open(filename, "w") as fp: |
| 33 | for name in tests: |
| 34 | print(name, file=fp) |
| 35 | fp.flush() |
| 36 | |
| 37 | |
| 38 | def write_output(filename, tests): |
no test coverage detected
searching dependent graphs…