(value)
| 373 | raise Exception("Unable to parse Leiningen string from output:\n%s" % value) |
| 374 | |
| 375 | def parse_lein_regexes(value): |
| 376 | for line in value.splitlines(): |
| 377 | regexes = re.findall(r'#"([^"]*)"', line) |
| 378 | if regexes: |
| 379 | return regexes |
| 380 | raise Exception("Unable to parse Leiningen regexes from output:\n%s" % value) |
| 381 | |
| 382 | def write_docs(docs_dir, jdk_path=None): |
| 383 | temp_dir = tempfile.mkdtemp() |
no outgoing calls
no test coverage detected