(filename, tests)
| 36 | |
| 37 | |
| 38 | def write_output(filename, tests): |
| 39 | if not filename: |
| 40 | return |
| 41 | print("Writing %s tests into %s" % (len(tests), filename)) |
| 42 | write_tests(filename, tests) |
| 43 | return filename |
| 44 | |
| 45 | |
| 46 | def format_shell_args(args): |
no test coverage detected
searching dependent graphs…