Shows information useful to include in bug-reports.
(ctx, **kwargs)
| 166 | @celery.command(cls=CeleryCommand) |
| 167 | @click.pass_context |
| 168 | def report(ctx, **kwargs): |
| 169 | """Shows information useful to include in bug-reports.""" |
| 170 | app = ctx.obj.app |
| 171 | app.loader.import_default_modules() |
| 172 | ctx.obj.echo(app.bugreport()) |
| 173 | |
| 174 | |
| 175 | celery.add_command(purge) |
nothing calls this directly
no test coverage detected