(event_loop)
| 503 | |
| 504 | @pytest.fixture |
| 505 | def test_agent(event_loop): |
| 506 | agent = Agent(paw='123', sleep_min=2, sleep_max=8, watchdog=0, executors=['sh'], platform='linux') |
| 507 | event_loop.run_until_complete(BaseService.get_service('data_svc').store(agent)) |
| 508 | return agent |
| 509 | |
| 510 | |
| 511 | @pytest.fixture |
nothing calls this directly
no test coverage detected