(setup_operations_api_test, test_agent, test_operation)
| 12 | |
| 13 | @pytest.fixture |
| 14 | async def setup_run_one_link_operation(setup_operations_api_test, test_agent, test_operation): |
| 15 | operation = (await BaseService.get_service('data_svc').locate('operations', {'id': test_operation['id']}))[0] |
| 16 | operation.agents.append(test_agent) |
| 17 | operation.state = operation.States.RUN_ONE_LINK.value |
| 18 | |
| 19 | |
| 20 | @pytest.fixture |
nothing calls this directly
no test coverage detected