(setup_operations_api_test, test_agent, test_operation)
| 19 | |
| 20 | @pytest.fixture |
| 21 | async def setup_paused_operation(setup_operations_api_test, test_agent, test_operation): |
| 22 | operation = (await BaseService.get_service('data_svc').locate('operations', {'id': test_operation['id']}))[0] |
| 23 | operation.agents.append(test_agent) |
| 24 | operation.state = operation.States.PAUSED.value |
| 25 | |
| 26 | |
| 27 | @pytest.fixture |
nothing calls this directly
no test coverage detected