(agent_config, app_config)
| 111 | |
| 112 | @pytest.fixture |
| 113 | def combined_config(agent_config, app_config): |
| 114 | main_config = app_config.copy() |
| 115 | for key in main_config: |
| 116 | if key.startswith('app'): |
| 117 | continue |
| 118 | app_config.pop(key) |
| 119 | app_config.update({f'agents.{k}': v for k, v in agent_config.items()}) |
| 120 | return app_config |
| 121 | |
| 122 | |
| 123 | class TestAgentsApi: |