Pretty-prints help text for available analyses.
()
| 96 | |
| 97 | |
| 98 | def _render_analysis_help_text() -> str: |
| 99 | """Pretty-prints help text for available analyses.""" |
| 100 | return "\n".join(f'- "{name}": {analysis.description}' |
| 101 | for name, analysis in analyses.items()) |
| 102 | |
| 103 | flags.DEFINE_list("analysis", ["summary"], f""" |
| 104 | Analyses to run. May be any comma-separated combination of |
no test coverage detected
searching dependent graphs…