(self, *args, **kwargs)
| 22 | salt_call_cli = attr.ib() |
| 23 | |
| 24 | def run(self, *args, **kwargs): |
| 25 | beacon_event_timeout = 120 |
| 26 | cli_run_timeout = beacon_event_timeout + 30 |
| 27 | return self.salt_call_cli.run( |
| 28 | *args, timeout=beacon_event_timeout, _timeout=cli_run_timeout, **kwargs |
| 29 | ) |
| 30 | |
| 31 | |
| 32 | @pytest.fixture(scope="module") |
no outgoing calls
no test coverage detected