Show project information.
(ctx)
| 161 | @project.command("info") |
| 162 | @click.pass_context |
| 163 | def project_info(ctx): |
| 164 | """Show project information.""" |
| 165 | p = _load_project(ctx) |
| 166 | _output(proj_mod.get_project_info(p), ctx.obj.get("as_json")) |
| 167 | |
| 168 | |
| 169 | @project.command("set-source") |
nothing calls this directly
no test coverage detected