(cls)
| 46 | class QueueConsumerTest(ExecutionDbTestCase): |
| 47 | @classmethod |
| 48 | def setUpClass(cls): |
| 49 | super(QueueConsumerTest, cls).setUpClass() |
| 50 | |
| 51 | # Register runners. |
| 52 | runnersregistrar.register_runners() |
| 53 | |
| 54 | # Register test pack(s). |
| 55 | actions_registrar = actionsregistrar.ActionsRegistrar( |
| 56 | use_pack_cache=False, fail_on_failure=True |
| 57 | ) |
| 58 | |
| 59 | for pack in PACKS: |
| 60 | actions_registrar.register_from_pack(pack) |
| 61 | |
| 62 | def __init__(self, *args, **kwargs): |
| 63 | super(QueueConsumerTest, self).__init__(*args, **kwargs) |
nothing calls this directly
no test coverage detected