(self, command, sentry_cfg, monitor_slug)
| 16 | |
| 17 | class MonitoredJob: |
| 18 | def __init__(self, command, sentry_cfg, monitor_slug): |
| 19 | self.command = command |
| 20 | self._setup_sentry(sentry_cfg.get("dsn", "")) |
| 21 | self.monitor_slug = monitor_slug |
| 22 | |
| 23 | def run(self): |
| 24 | try: |
nothing calls this directly
no test coverage detected