codemie-test-harness 0.1.129__py3-none-any.whl → 0.1.131__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of codemie-test-harness might be problematic. Click here for more details.

Files changed (321) hide show
  1. codemie_test_harness/.env +5 -0
  2. codemie_test_harness/cli/runner.py +25 -16
  3. codemie_test_harness/pytest.ini +6 -0
  4. {tests → codemie_test_harness/tests}/__init__.py +1 -1
  5. {tests → codemie_test_harness/tests}/assistant/datasource/test_code_datasource.py +2 -2
  6. {tests → codemie_test_harness/tests}/assistant/datasource/test_confluence_datasource.py +2 -2
  7. {tests → codemie_test_harness/tests}/assistant/datasource/test_file_indexing.py +6 -6
  8. {tests → codemie_test_harness/tests}/assistant/datasource/test_google_datasource.py +2 -2
  9. {tests → codemie_test_harness/tests}/assistant/datasource/test_jira_datasource.py +5 -2
  10. {tests → codemie_test_harness/tests}/assistant/default_integrations/test_default_integrations_for_tool.py +9 -6
  11. {tests → codemie_test_harness/tests}/assistant/default_integrations/test_default_integrations_for_tool_kit.py +8 -6
  12. {tests → codemie_test_harness/tests}/assistant/default_integrations/test_default_integrations_for_tool_with_datasource.py +6 -6
  13. {tests → codemie_test_harness/tests}/assistant/test_assistants.py +6 -6
  14. {tests → codemie_test_harness/tests}/assistant/tools/ado/test_assistant_for_ado_test_plan_tools.py +6 -6
  15. {tests → codemie_test_harness/tests}/assistant/tools/ado/test_assistant_for_ado_wiki_tools.py +4 -4
  16. {tests → codemie_test_harness/tests}/assistant/tools/ado/test_assistant_for_ado_work_item_tools.py +6 -6
  17. {tests → codemie_test_harness/tests}/assistant/tools/cloud/test_cloud_tools.py +2 -2
  18. {tests → codemie_test_harness/tests}/assistant/tools/codebase/test_codebase_tools.py +2 -2
  19. {tests → codemie_test_harness/tests}/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py +3 -3
  20. {tests → codemie_test_harness/tests}/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py +3 -3
  21. {tests → codemie_test_harness/tests}/assistant/tools/git/test_assistant_with_git_tools.py +2 -2
  22. {tests → codemie_test_harness/tests}/assistant/tools/mcp/test_cli_mcp_server.py +4 -4
  23. {tests → codemie_test_harness/tests}/assistant/tools/mcp/test_mcp_servers.py +1 -1
  24. {tests → codemie_test_harness/tests}/assistant/tools/notification/test_assistant_notification_tools.py +3 -3
  25. {tests → codemie_test_harness/tests}/assistant/tools/openapi/test_assistant_with_open_api_tools.py +2 -2
  26. {tests → codemie_test_harness/tests}/assistant/tools/plugin/test_assistant_with_development_plugin.py +4 -4
  27. {tests → codemie_test_harness/tests}/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py +3 -3
  28. {tests → codemie_test_harness/tests}/assistant/tools/project_management/test_assistant_pm_tools.py +8 -6
  29. {tests → codemie_test_harness/tests}/assistant/tools/research/test_assistant_research_tools.py +3 -3
  30. {tests → codemie_test_harness/tests}/assistant/tools/servicenow/test_servicenow_tools.py +5 -2
  31. {tests → codemie_test_harness/tests}/assistant/tools/vcs/test_assistant_with_vcs_tools.py +3 -3
  32. {tests → codemie_test_harness/tests}/conftest.py +4 -0
  33. {tests → codemie_test_harness/tests}/e2e/test_e2e.py +2 -2
  34. {tests → codemie_test_harness/tests}/integrations/project/test_default_integrations.py +16 -9
  35. {tests → codemie_test_harness/tests}/integrations/project/test_project_integrations.py +6 -3
  36. {tests → codemie_test_harness/tests}/integrations/user/test_default_integrations.py +16 -9
  37. {tests → codemie_test_harness/tests}/integrations/user/test_user_integrations.py +3 -3
  38. {tests → codemie_test_harness/tests}/llm/assistants/test_llm.py +4 -4
  39. codemie_test_harness/tests/providers/test_providers_endpoints.py +239 -0
  40. {tests → codemie_test_harness/tests}/search/test_search_assistant.py +3 -3
  41. {tests → codemie_test_harness/tests}/search/test_search_datasource.py +3 -3
  42. {tests → codemie_test_harness/tests}/search/test_search_integration.py +2 -2
  43. {tests → codemie_test_harness/tests}/search/test_search_workflow.py +3 -3
  44. {tests → codemie_test_harness/tests}/service/test_assistant_service.py +2 -2
  45. {tests → codemie_test_harness/tests}/service/test_datasource_service.py +2 -2
  46. {tests → codemie_test_harness/tests}/service/test_integration_service.py +2 -2
  47. {tests → codemie_test_harness/tests}/service/test_task_service.py +2 -2
  48. {tests → codemie_test_harness/tests}/service/test_workflow_execution_service.py +2 -2
  49. {tests → codemie_test_harness/tests}/service/test_workflow_service.py +2 -2
  50. {tests → codemie_test_harness/tests}/test_data/ado_test_plan_tools_test_data.py +1 -1
  51. {tests → codemie_test_harness/tests}/test_data/ado_wiki_tools_test_data.py +1 -1
  52. {tests → codemie_test_harness/tests}/test_data/ado_work_item_tools_test_data.py +1 -1
  53. {tests → codemie_test_harness/tests}/test_data/cloud_tools_test_data.py +2 -2
  54. {tests → codemie_test_harness/tests}/test_data/codebase_tools_test_data.py +2 -2
  55. {tests → codemie_test_harness/tests}/test_data/data_management_tools_test_data.py +1 -1
  56. {tests → codemie_test_harness/tests}/test_data/direct_tools/ado_test_plan_tools_test_data.py +1 -1
  57. {tests → codemie_test_harness/tests}/test_data/direct_tools/ado_wiki_tools_test_data.py +1 -1
  58. {tests → codemie_test_harness/tests}/test_data/direct_tools/ado_work_item_tools_test_data.py +1 -1
  59. {tests → codemie_test_harness/tests}/test_data/direct_tools/cloud_tools_test_data.py +2 -2
  60. {tests → codemie_test_harness/tests}/test_data/direct_tools/codebase_tools_test_data.py +1 -1
  61. {tests → codemie_test_harness/tests}/test_data/direct_tools/data_management_tools_test_data.py +2 -2
  62. {tests → codemie_test_harness/tests}/test_data/direct_tools/direct_tools_test_data.py +2 -2
  63. {tests → codemie_test_harness/tests}/test_data/direct_tools/file_management_tools_test_data.py +1 -1
  64. {tests → codemie_test_harness/tests}/test_data/direct_tools/notification_tools_test_data.py +2 -2
  65. {tests → codemie_test_harness/tests}/test_data/direct_tools/open_api_tools_test_data.py +1 -1
  66. {tests → codemie_test_harness/tests}/test_data/direct_tools/project_management_tools_test_data.py +2 -2
  67. {tests → codemie_test_harness/tests}/test_data/direct_tools/research_tools_test_data.py +1 -1
  68. {tests → codemie_test_harness/tests}/test_data/direct_tools/vcs_tools_test_data.py +1 -1
  69. {tests → codemie_test_harness/tests}/test_data/file_management_tools_test_data.py +1 -1
  70. codemie_test_harness/tests/test_data/files/provider_payload.json +382 -0
  71. {tests → codemie_test_harness/tests}/test_data/git_tools_test_data.py +1 -1
  72. {tests → codemie_test_harness/tests}/test_data/integrations_test_data.py +2 -2
  73. {tests → codemie_test_harness/tests}/test_data/llm_test_data.py +1 -1
  74. {tests → codemie_test_harness/tests}/test_data/mcp_server_test_data.py +2 -2
  75. {tests → codemie_test_harness/tests}/test_data/notification_tools_test_data.py +1 -1
  76. {tests → codemie_test_harness/tests}/test_data/open_api_tools_test_data.py +1 -1
  77. {tests → codemie_test_harness/tests}/test_data/plugin_tools_test_data.py +2 -2
  78. {tests → codemie_test_harness/tests}/test_data/project_management_test_data.py +3 -3
  79. {tests → codemie_test_harness/tests}/test_data/research_tools_test_data.py +1 -1
  80. {tests → codemie_test_harness/tests}/test_data/vcs_tools_test_data.py +1 -1
  81. {tests → codemie_test_harness/tests}/ui/conftest.py +1 -1
  82. {tests → codemie_test_harness/tests}/ui/pageobject/assistants/assistants_page.py +1 -1
  83. {tests → codemie_test_harness/tests}/ui/pageobject/base_page.py +2 -2
  84. {tests → codemie_test_harness/tests}/ui/pageobject/login_page.py +4 -2
  85. {tests → codemie_test_harness/tests}/ui/pageobject/workflows/base_workflow_form_page.py +2 -2
  86. {tests → codemie_test_harness/tests}/ui/pageobject/workflows/create_workflow_page.py +4 -2
  87. {tests → codemie_test_harness/tests}/ui/pageobject/workflows/edit_workflow_page.py +3 -1
  88. {tests → codemie_test_harness/tests}/ui/pageobject/workflows/workflow_details_page.py +5 -3
  89. {tests → codemie_test_harness/tests}/ui/pageobject/workflows/workflow_executions_page.py +3 -3
  90. {tests → codemie_test_harness/tests}/ui/pageobject/workflows/workflow_template_details.py +1 -1
  91. {tests → codemie_test_harness/tests}/ui/pageobject/workflows/workflow_templates_page.py +4 -2
  92. {tests → codemie_test_harness/tests}/ui/pageobject/workflows/workflows_page.py +8 -3
  93. {tests → codemie_test_harness/tests}/ui/test_create_workflow.py +7 -3
  94. {tests → codemie_test_harness/tests}/ui/test_edit_workflow.py +8 -4
  95. {tests → codemie_test_harness/tests}/ui/test_workflow_details.py +4 -4
  96. {tests → codemie_test_harness/tests}/ui/test_workflow_executions_page.py +3 -3
  97. {tests → codemie_test_harness/tests}/ui/test_workflow_templates.py +12 -6
  98. {tests → codemie_test_harness/tests}/ui/test_workflows.py +3 -1
  99. {tests → codemie_test_harness/tests}/utils/assistant_utils.py +6 -2
  100. {tests → codemie_test_harness/tests}/utils/aws_parameters_store.py +6 -4
  101. {tests → codemie_test_harness/tests}/utils/base_utils.py +2 -2
  102. {tests → codemie_test_harness/tests}/utils/constants.py +1 -1
  103. {tests → codemie_test_harness/tests}/utils/datasource_utils.py +6 -2
  104. codemie_test_harness/tests/utils/http_utils.py +141 -0
  105. {tests → codemie_test_harness/tests}/utils/integration_utils.py +6 -2
  106. {tests → codemie_test_harness/tests}/utils/notification_utils.py +1 -1
  107. codemie_test_harness/tests/utils/provider_utils.py +178 -0
  108. {tests → codemie_test_harness/tests}/utils/search_utils.py +1 -1
  109. {tests → codemie_test_harness/tests}/utils/similarity_check.py +5 -1
  110. {tests → codemie_test_harness/tests}/utils/workflow_utils.py +4 -4
  111. {tests → codemie_test_harness/tests}/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py +5 -5
  112. {tests → codemie_test_harness/tests}/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_wiki_tools.py +3 -3
  113. {tests → codemie_test_harness/tests}/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_work_item_tools.py +5 -5
  114. {tests → codemie_test_harness/tests}/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py +2 -2
  115. {tests → codemie_test_harness/tests}/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py +2 -2
  116. {tests → codemie_test_harness/tests}/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py +3 -3
  117. {tests → codemie_test_harness/tests}/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool.py +9 -6
  118. {tests → codemie_test_harness/tests}/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +8 -6
  119. {tests → codemie_test_harness/tests}/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +6 -6
  120. {tests → codemie_test_harness/tests}/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py +3 -3
  121. {tests → codemie_test_harness/tests}/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py +2 -2
  122. {tests → codemie_test_harness/tests}/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py +2 -2
  123. {tests → codemie_test_harness/tests}/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py +2 -2
  124. {tests → codemie_test_harness/tests}/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py +4 -2
  125. {tests → codemie_test_harness/tests}/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_development_plugin.py +4 -4
  126. {tests → codemie_test_harness/tests}/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_plugin_and_mcp_servers.py +3 -3
  127. {tests → codemie_test_harness/tests}/workflow/assistant_tools/project_management/test_workflow_with_assistant_pm_tools.py +5 -3
  128. {tests → codemie_test_harness/tests}/workflow/assistant_tools/research/test_workflow_with_assistant_research_tools.py +3 -3
  129. {tests → codemie_test_harness/tests}/workflow/assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +5 -2
  130. {tests → codemie_test_harness/tests}/workflow/assistant_tools/vcs/workflow_with_assistant_vcs_tools.py +3 -3
  131. {tests → codemie_test_harness/tests}/workflow/config_validation/test_config_validation.py +3 -3
  132. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool.py +7 -7
  133. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool_kit.py +9 -7
  134. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_ado_test_plan_tools.py +2 -2
  135. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_ado_wiki_tools.py +4 -2
  136. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py +2 -2
  137. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py +5 -3
  138. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_codebase_tools.py +4 -4
  139. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py +3 -3
  140. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py +2 -2
  141. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_notification_tools.py +4 -4
  142. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py +2 -2
  143. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_plugin_tools.py +3 -3
  144. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_project_management_tools.py +3 -3
  145. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_research_tools.py +2 -2
  146. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_servicenow_tools.py +3 -3
  147. {tests → codemie_test_harness/tests}/workflow/direct_tools_calling/test_workflow_with_vcs_tools.py +3 -3
  148. {tests → codemie_test_harness/tests}/workflow/test_workflows.py +3 -3
  149. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_test_plan_tools.py +5 -5
  150. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_wiki_tools.py +3 -3
  151. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_work_item_tools.py +5 -5
  152. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py +3 -3
  153. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py +4 -4
  154. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py +4 -4
  155. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool.py +10 -7
  156. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +9 -7
  157. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +7 -7
  158. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py +3 -3
  159. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py +2 -2
  160. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py +3 -3
  161. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py +3 -3
  162. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py +4 -2
  163. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/plugin/test_workflow_with_development_plugin.py +4 -4
  164. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/plugin/test_workflow_with_plugin_and_mcp_servers.py +4 -4
  165. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/project_management/test_workflow_with_project_management_tools.py +5 -3
  166. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/research/test_workflow_with_research_tools.py +6 -3
  167. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +6 -3
  168. codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py +0 -0
  169. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py +3 -3
  170. {codemie_test_harness-0.1.129.dist-info → codemie_test_harness-0.1.131.dist-info}/METADATA +2 -2
  171. codemie_test_harness-0.1.131.dist-info/RECORD +326 -0
  172. codemie_test_harness-0.1.129.dist-info/RECORD +0 -320
  173. tests/utils/http_utils.py +0 -53
  174. {tests → codemie_test_harness/tests}/assistant/__init__.py +0 -0
  175. {tests → codemie_test_harness/tests}/assistant/datasource/__init__.py +0 -0
  176. {tests → codemie_test_harness/tests}/assistant/default_integrations/__init__.py +0 -0
  177. {tests → codemie_test_harness/tests}/assistant/tools/__init__.py +0 -0
  178. {tests → codemie_test_harness/tests}/assistant/tools/ado/__init__.py +0 -0
  179. {tests → codemie_test_harness/tests}/assistant/tools/cloud/__init__.py +0 -0
  180. {tests → codemie_test_harness/tests}/assistant/tools/codebase/__init__.py +0 -0
  181. {tests → codemie_test_harness/tests}/assistant/tools/datamanagement/__init__.py +0 -0
  182. {tests → codemie_test_harness/tests}/assistant/tools/filemanagement/__init__.py +0 -0
  183. {tests → codemie_test_harness/tests}/assistant/tools/git/__init__.py +0 -0
  184. {tests → codemie_test_harness/tests}/assistant/tools/mcp/__init__.py +0 -0
  185. {tests → codemie_test_harness/tests}/assistant/tools/notification/__init__.py +0 -0
  186. {tests → codemie_test_harness/tests}/assistant/tools/openapi/__init__.py +0 -0
  187. {tests → codemie_test_harness/tests}/assistant/tools/plugin/__init__.py +0 -0
  188. {tests → codemie_test_harness/tests}/assistant/tools/project_management/__init__.py +0 -0
  189. {tests → codemie_test_harness/tests}/assistant/tools/research/__init__.py +0 -0
  190. {tests → codemie_test_harness/tests}/assistant/tools/servicenow/__init__.py +0 -0
  191. {tests → codemie_test_harness/tests}/assistant/tools/vcs/__init__.py +0 -0
  192. {tests → codemie_test_harness/tests}/e2e/__init__.py +0 -0
  193. {tests → codemie_test_harness/tests}/enums/__init__.py +0 -0
  194. {tests → codemie_test_harness/tests}/enums/integrations.py +0 -0
  195. {tests → codemie_test_harness/tests}/enums/model_types.py +0 -0
  196. {tests → codemie_test_harness/tests}/enums/tools.py +0 -0
  197. {tests → codemie_test_harness/tests}/integrations/__init__.py +0 -0
  198. {tests → codemie_test_harness/tests}/integrations/project/__init__.py +0 -0
  199. {tests → codemie_test_harness/tests}/integrations/user/__init__.py +0 -0
  200. {tests → codemie_test_harness/tests}/llm/__init__.py +0 -0
  201. {tests → codemie_test_harness/tests}/llm/assistants/__init__.py +0 -0
  202. {tests/service → codemie_test_harness/tests/providers}/__init__.py +0 -0
  203. {tests → codemie_test_harness/tests}/search/__init__.py +0 -0
  204. {tests/test_data → codemie_test_harness/tests/service}/__init__.py +0 -0
  205. {tests → codemie_test_harness/tests}/service/test_llm_service.py +0 -0
  206. {tests → codemie_test_harness/tests}/service/test_user_service.py +0 -0
  207. {tests/test_data/direct_tools → codemie_test_harness/tests/test_data}/__init__.py +0 -0
  208. {tests/ui → codemie_test_harness/tests/test_data/direct_tools}/__init__.py +0 -0
  209. {tests → codemie_test_harness/tests}/test_data/direct_tools/servicenow_tools_test_data.py +0 -0
  210. {tests → codemie_test_harness/tests}/test_data/file_test_data.py +0 -0
  211. {tests → codemie_test_harness/tests}/test_data/files/large-files/large_file.txt +0 -0
  212. {tests → codemie_test_harness/tests}/test_data/files/test.csv +0 -0
  213. {tests → codemie_test_harness/tests}/test_data/files/test.docx +0 -0
  214. {tests → codemie_test_harness/tests}/test_data/files/test.gif +0 -0
  215. {tests → codemie_test_harness/tests}/test_data/files/test.ini +0 -0
  216. {tests → codemie_test_harness/tests}/test_data/files/test.jpeg +0 -0
  217. {tests → codemie_test_harness/tests}/test_data/files/test.jpg +0 -0
  218. {tests → codemie_test_harness/tests}/test_data/files/test.json +0 -0
  219. {tests → codemie_test_harness/tests}/test_data/files/test.pdf +0 -0
  220. {tests → codemie_test_harness/tests}/test_data/files/test.png +0 -0
  221. {tests → codemie_test_harness/tests}/test_data/files/test.pptx +0 -0
  222. {tests → codemie_test_harness/tests}/test_data/files/test.txt +0 -0
  223. {tests → codemie_test_harness/tests}/test_data/files/test.vtt +0 -0
  224. {tests → codemie_test_harness/tests}/test_data/files/test.xlsx +0 -0
  225. {tests → codemie_test_harness/tests}/test_data/files/test.xml +0 -0
  226. {tests → codemie_test_harness/tests}/test_data/files/test.yaml +0 -0
  227. {tests → codemie_test_harness/tests}/test_data/google_datasource_test_data.py +0 -0
  228. {tests → codemie_test_harness/tests}/test_data/index_test_data.py +0 -0
  229. {tests → codemie_test_harness/tests}/test_data/openapi.json +0 -0
  230. {tests → codemie_test_harness/tests}/test_data/output_schema_test_data.py +0 -0
  231. {tests → codemie_test_harness/tests}/test_data/pm_tools_test_data.py +0 -0
  232. {tests → codemie_test_harness/tests}/test_data/servicenow_tools_test_data.py +0 -0
  233. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/invalid_assistant_id.yaml +0 -0
  234. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/invalid_assistant_in_state.yaml +0 -0
  235. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/invalid_data_source.yaml +0 -0
  236. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/invalid_state.yaml +0 -0
  237. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/invalid_tool.yaml +0 -0
  238. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/invalid_yaml.yaml +0 -0
  239. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/invalid_yaml_format.yaml +0 -0
  240. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_assistant_id.yaml +0 -0
  241. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_assistant_tools_name.yaml +0 -0
  242. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_retry_backoff_factor.yaml +0 -0
  243. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_retry_initial_interval.yaml +0 -0
  244. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_retry_max_attempts.yaml +0 -0
  245. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_retry_max_interval.yaml +0 -0
  246. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states.yaml +0 -0
  247. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_id.yaml +0 -0
  248. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_next.yaml +0 -0
  249. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_next_condition_expression.yaml +0 -0
  250. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_next_condition_otherwise.yaml +0 -0
  251. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_next_condition_then.yaml +0 -0
  252. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_next_switch_cases.yaml +0 -0
  253. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_next_switch_cases_condition.yaml +0 -0
  254. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_next_switch_cases_state_id.yaml +0 -0
  255. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_next_switch_default.yaml +0 -0
  256. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_retry_backoff_factor.yaml +0 -0
  257. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_retry_initial_interval.yaml +0 -0
  258. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_retry_max_attempts.yaml +0 -0
  259. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_states_retry_max_interval.yaml +0 -0
  260. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_system_prompt.yaml +0 -0
  261. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_tools_id.yaml +0 -0
  262. {tests → codemie_test_harness/tests}/test_data/workflow/invalid_config/missing_required_tools_name.yaml +0 -0
  263. {tests → codemie_test_harness/tests}/test_data/workflow_validation_messages.py +0 -0
  264. {tests/ui/pageobject → codemie_test_harness/tests/ui}/__init__.py +0 -0
  265. {tests/ui/pageobject/assistants → codemie_test_harness/tests/ui/pageobject}/__init__.py +0 -0
  266. {tests/workflow → codemie_test_harness/tests/ui/pageobject/assistants}/__init__.py +0 -0
  267. {tests → codemie_test_harness/tests}/ui/pageobject/components/__init__.py +0 -0
  268. {tests → codemie_test_harness/tests}/ui/pageobject/components/execution_history_row.py +0 -0
  269. {tests → codemie_test_harness/tests}/ui/pageobject/components/header.py +0 -0
  270. {tests → codemie_test_harness/tests}/ui/pageobject/components/pop_up.py +0 -0
  271. {tests → codemie_test_harness/tests}/ui/pageobject/components/workflow_card.py +0 -0
  272. {tests → codemie_test_harness/tests}/ui/pageobject/components/workflow_execution_history_item.py +0 -0
  273. {tests → codemie_test_harness/tests}/ui/pageobject/components/workflow_execution_state.py +0 -0
  274. {tests → codemie_test_harness/tests}/ui/pageobject/components/workflow_sidebar.py +0 -0
  275. {tests → codemie_test_harness/tests}/ui/pageobject/components/workflow_state_card.py +0 -0
  276. {tests → codemie_test_harness/tests}/ui/pageobject/workflows/__init__.py +0 -0
  277. {tests → codemie_test_harness/tests}/utils/__init__.py +0 -0
  278. {tests → codemie_test_harness/tests}/utils/client_factory.py +0 -0
  279. {tests → codemie_test_harness/tests}/utils/file_utils.py +0 -0
  280. {tests → codemie_test_harness/tests}/utils/gitbud_utils.py +0 -0
  281. {tests → codemie_test_harness/tests}/utils/json_utils.py +0 -0
  282. {tests → codemie_test_harness/tests}/utils/logger_util.py +0 -0
  283. {tests → codemie_test_harness/tests}/utils/pytest_utils.py +0 -0
  284. {tests → codemie_test_harness/tests}/utils/yaml_utils.py +0 -0
  285. {tests/workflow/assistant_tools → codemie_test_harness/tests/workflow}/__init__.py +0 -0
  286. {tests/workflow/assistant_tools/ado → codemie_test_harness/tests/workflow/assistant_tools}/__init__.py +0 -0
  287. {tests/workflow/assistant_tools/cloud → codemie_test_harness/tests/workflow/assistant_tools/ado}/__init__.py +0 -0
  288. {tests/workflow/assistant_tools/codebase → codemie_test_harness/tests/workflow/assistant_tools/cloud}/__init__.py +0 -0
  289. {tests/workflow/assistant_tools/data_management → codemie_test_harness/tests/workflow/assistant_tools/codebase}/__init__.py +0 -0
  290. {tests/workflow/assistant_tools/default_integrations → codemie_test_harness/tests/workflow/assistant_tools/data_management}/__init__.py +0 -0
  291. {tests/workflow/assistant_tools/git → codemie_test_harness/tests/workflow/assistant_tools/default_integrations}/__init__.py +0 -0
  292. {tests → codemie_test_harness/tests}/workflow/assistant_tools/file_management/__init__.py +0 -0
  293. {tests/workflow/assistant_tools/mcp → codemie_test_harness/tests/workflow/assistant_tools/git}/__init__.py +0 -0
  294. {tests/workflow/assistant_tools/notification → codemie_test_harness/tests/workflow/assistant_tools/mcp}/__init__.py +0 -0
  295. {tests/workflow/assistant_tools/plugin → codemie_test_harness/tests/workflow/assistant_tools/notification}/__init__.py +0 -0
  296. {tests → codemie_test_harness/tests}/workflow/assistant_tools/open_api/__init__.py +0 -0
  297. {tests/workflow/assistant_tools/project_management → codemie_test_harness/tests/workflow/assistant_tools/plugin}/__init__.py +0 -0
  298. {tests/workflow/assistant_tools/research → codemie_test_harness/tests/workflow/assistant_tools/project_management}/__init__.py +0 -0
  299. {tests/workflow/assistant_tools/servicenow → codemie_test_harness/tests/workflow/assistant_tools/research}/__init__.py +0 -0
  300. {tests/workflow/assistant_tools/vcs → codemie_test_harness/tests/workflow/assistant_tools/servicenow}/__init__.py +0 -0
  301. {tests/workflow/config_validation → codemie_test_harness/tests/workflow/assistant_tools/vcs}/__init__.py +0 -0
  302. {tests/workflow/direct_tools_calling → codemie_test_harness/tests/workflow/config_validation}/__init__.py +0 -0
  303. {tests/workflow/direct_tools_calling/default_integrations → codemie_test_harness/tests/workflow/direct_tools_calling}/__init__.py +0 -0
  304. {tests/workflow/virtual_assistant_tools → codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations}/__init__.py +0 -0
  305. {tests/workflow/virtual_assistant_tools/ado → codemie_test_harness/tests/workflow/virtual_assistant_tools}/__init__.py +0 -0
  306. {tests/workflow/virtual_assistant_tools/cloud → codemie_test_harness/tests/workflow/virtual_assistant_tools/ado}/__init__.py +0 -0
  307. {tests/workflow/virtual_assistant_tools/default_integrations → codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud}/__init__.py +0 -0
  308. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/codebase/__init__.py +0 -0
  309. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/data_management/__init__.py +0 -0
  310. {tests/workflow/virtual_assistant_tools/git → codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations}/__init__.py +0 -0
  311. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/file_management/__init__.py +0 -0
  312. {tests/workflow/virtual_assistant_tools/mcp → codemie_test_harness/tests/workflow/virtual_assistant_tools/git}/__init__.py +0 -0
  313. {tests/workflow/virtual_assistant_tools/plugin → codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp}/__init__.py +0 -0
  314. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/notification/__init__.py +0 -0
  315. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/open_api/__init__.py +0 -0
  316. {tests/workflow/virtual_assistant_tools/research → codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin}/__init__.py +0 -0
  317. {tests → codemie_test_harness/tests}/workflow/virtual_assistant_tools/project_management/__init__.py +0 -0
  318. {tests/workflow/virtual_assistant_tools/servicenow → codemie_test_harness/tests/workflow/virtual_assistant_tools/research}/__init__.py +0 -0
  319. {tests/workflow/virtual_assistant_tools/vcs → codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow}/__init__.py +0 -0
  320. {codemie_test_harness-0.1.129.dist-info → codemie_test_harness-0.1.131.dist-info}/WHEEL +0 -0
  321. {codemie_test_harness-0.1.129.dist-info → codemie_test_harness-0.1.131.dist-info}/entry_points.txt +0 -0
@@ -1,320 +0,0 @@
1
- codemie_test_harness/cli/__init__.py,sha256=da1PTClDMl-IBkrSvq6JC1lnS-K_BASzCvxVhNxN5Ls,13
2
- codemie_test_harness/cli/cli.py,sha256=KayyiNCsfF1dFunqOEwC_DM3c5GWl8E9rx-_Tw5TMwA,5969
3
- codemie_test_harness/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- codemie_test_harness/cli/commands/config_cmd.py,sha256=iCV7qJZrESIKZQdg_AmhuPz1EZLN2s-UpbdzzIjrVEU,1353
5
- codemie_test_harness/cli/commands/run_cmd.py,sha256=T5js1hwHKi1QuF-kLwP3c-GMtiO9QO15H3JJc7nzpp4,1052
6
- codemie_test_harness/cli/constants.py,sha256=956_apPJ4MjhnKo1ZtDooXCd2N89J3vyAB-J9-SOr7U,1637
7
- codemie_test_harness/cli/runner.py,sha256=e8shcJLAQOCw7br7UVfkl4eU7MV7tHOY6CFLOSE96wg,1744
8
- codemie_test_harness/cli/utils.py,sha256=NlRa8VFbXTbD74jfUaSqbccGNu2R1dUIg8d5SyDTmIM,1136
9
- tests/__init__.py,sha256=nvgBwCx27qm2YIE4hzAwqoD0sMmUVF9Kec-ndl7CFZ8,994
10
- tests/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- tests/assistant/datasource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- tests/assistant/datasource/test_code_datasource.py,sha256=4jMJjUClgjRKW2Prh0bkphQbZ78WCIP0fLKF2YY6pZM,2557
13
- tests/assistant/datasource/test_confluence_datasource.py,sha256=UCgeB8HfYxnSIHTAyfuMeDjvNM2a8PjjPJLRxnw923c,2206
14
- tests/assistant/datasource/test_file_indexing.py,sha256=A5SFUysgNgi-njgIXMCaNp8HIqqni96xje2dpeAgmrw,5410
15
- tests/assistant/datasource/test_google_datasource.py,sha256=U3lE8tnra_nBayyce3CYCvsF_KZUirP_IBhGgkW14Dw,2182
16
- tests/assistant/datasource/test_jira_datasource.py,sha256=vL6vh-eLhGomIDGwKeN7-fQlDS2Ilu9HR1g-yAkogww,2067
17
- tests/assistant/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- tests/assistant/default_integrations/test_default_integrations_for_tool.py,sha256=0ddIxpilM6KvpaZS6IzQ35iiy2ymI51LKlKilNcMF-k,7093
19
- tests/assistant/default_integrations/test_default_integrations_for_tool_kit.py,sha256=QnHa6hwBdHCb6UNMg8PIvVU3bx3cUWL-E-DDhRSrUyA,7368
20
- tests/assistant/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=x2sESRqwUBYOhTYPs9CNITWZhTO6Ya3YROjR5oLK8U0,9683
21
- tests/assistant/test_assistants.py,sha256=cswQmyiBeHtYIglYx3MH-_QNg34kW5xDPjsqRyiNlfM,11918
22
- tests/assistant/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- tests/assistant/tools/ado/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- tests/assistant/tools/ado/test_assistant_for_ado_test_plan_tools.py,sha256=lrcx5LJJ8Z6y6PCO8E4WAq-hwZMGwPR0NhOsofFyJ6w,4799
25
- tests/assistant/tools/ado/test_assistant_for_ado_wiki_tools.py,sha256=jSwT1XqUGdV6scCADNN9u1VTDhTc6fGT6NCgb_xCLok,3380
26
- tests/assistant/tools/ado/test_assistant_for_ado_work_item_tools.py,sha256=-3q4QL4NLNjFtCm5ZKVblOCGnohryKaOu1rZm2NJQpk,3233
27
- tests/assistant/tools/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
- tests/assistant/tools/cloud/test_cloud_tools.py,sha256=FIn1QZYYCBG-RyRPfhjzjGElP_MIkCYszdsSwESAR8U,996
29
- tests/assistant/tools/codebase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
- tests/assistant/tools/codebase/test_codebase_tools.py,sha256=LC-j1VLarmihp6EpDwLgGVwin979X7_NZm5bYyEJswQ,1582
31
- tests/assistant/tools/datamanagement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py,sha256=ZP5Xm6-Ac3zDNBadbmFHxi_93GA7Ei_z3bm56ZwwMS4,2513
33
- tests/assistant/tools/filemanagement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py,sha256=-SyUx2IY1QRVJR6VQWQyjxvfi6DaH2ew1_hgIKjZbxA,3763
35
- tests/assistant/tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- tests/assistant/tools/git/test_assistant_with_git_tools.py,sha256=f1i86SRCiPqvwbqKfn0GPmn_y9-NLWuQxvrpV0LgXtQ,10742
37
- tests/assistant/tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- tests/assistant/tools/mcp/test_cli_mcp_server.py,sha256=PzpD2LUXvX_DRvpEV3VqMtmBZY7OPGcQVl1mzafcFYY,2524
39
- tests/assistant/tools/mcp/test_mcp_servers.py,sha256=1Gsf0StfSTqVMP5BT2oGaNsbvvcgtAcgMUMtW-ZBlA4,1336
40
- tests/assistant/tools/notification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- tests/assistant/tools/notification/test_assistant_notification_tools.py,sha256=yQxYBhdYk8ivSxS-dKc3uZrsKrFq4emACh4ABdEMoho,2284
42
- tests/assistant/tools/openapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
- tests/assistant/tools/openapi/test_assistant_with_open_api_tools.py,sha256=XtDh4165KmfxHl8JLBPIfIsJviGONx68xqYGe9gDJ8g,920
44
- tests/assistant/tools/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- tests/assistant/tools/plugin/test_assistant_with_development_plugin.py,sha256=W8Bq6fO-JIWcXT57UEaz1M_EjKCYCggKRDjE0gXkkLA,2510
46
- tests/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py,sha256=oByjLK4ZSTdjVK6Dw-jmB-3LECEE_Tq13uMt15IPh14,1707
47
- tests/assistant/tools/project_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- tests/assistant/tools/project_management/test_assistant_pm_tools.py,sha256=ILTcLHpEe_OxgfTc-Ky9nEzhP5amejJvMaV8rwKkVHw,4690
49
- tests/assistant/tools/research/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
- tests/assistant/tools/research/test_assistant_research_tools.py,sha256=pkg3QxGUdcdw0Ch04XGfQYblhkoiCeT82VVXWDjnOYw,1513
51
- tests/assistant/tools/servicenow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
- tests/assistant/tools/servicenow/test_servicenow_tools.py,sha256=x3m5CW65la_FVwL5inJwl35KU_bhMVJfNsqTnyYnFkc,589
53
- tests/assistant/tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- tests/assistant/tools/vcs/test_assistant_with_vcs_tools.py,sha256=j9lWYbQ5BjU-4L74tBm4gxQqfb3TCc0T9SEFluTDytc,859
55
- tests/conftest.py,sha256=OJGJtMmjcecwXvborzxvBJfi2ASLAgsN-rEGZ_GmmRE,25568
56
- tests/e2e/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
- tests/e2e/test_e2e.py,sha256=_jWiDgUhOpO2p2VH987RXepS3PKvd1pSd3IFxKtK_z4,6215
58
- tests/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
- tests/enums/integrations.py,sha256=WEfqnOLqa4m8CH8BjQ9bxty0-w4nsZGy0Ok6SuQoqow,143
60
- tests/enums/model_types.py,sha256=k07srBYIF9uRwbLWY9pBNYzi0s3Jdt8ajES9p-UmrYo,1185
61
- tests/enums/tools.py,sha256=pGsHRGmPcLUqNtR2bKdRgsxdHw7HylXOWd9CPKPGOb0,5072
62
- tests/integrations/__init__.py,sha256=5vnZbxvYQ1Y91O8DJG3QfBHWcdYsMii59cMBzsvHBCg,237
63
- tests/integrations/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
- tests/integrations/project/test_default_integrations.py,sha256=PwkVOYZlKECI2UltCYw3EAwL1dM7BTLdi4IGTQ_igOs,8492
65
- tests/integrations/project/test_project_integrations.py,sha256=cfNqEtkTMNYjsByvCsEl9JZhRoPZq7lMZYGJqhvP3iw,13849
66
- tests/integrations/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
- tests/integrations/user/test_default_integrations.py,sha256=xsodRbbieRsP0jHIcgR07SufMeIt68m-vavwU3JXtXo,8474
68
- tests/integrations/user/test_user_integrations.py,sha256=wmTYEK55y5aKU-DjOMyJnI_0gPnvAuiLD-HJlasnG1s,13708
69
- tests/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
- tests/llm/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- tests/llm/assistants/test_llm.py,sha256=XjWZH7Pg8-cva64OlkZYWPMGZJ3MeCLJXsxlVnYXqWs,3162
72
- tests/search/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
73
- tests/search/test_search_assistant.py,sha256=Pqbv9ysVy-IN4v05orBq0akpuHkzHDAtVa6eLorD5GE,3170
74
- tests/search/test_search_datasource.py,sha256=b_Q7zjCjw_9qjUQEblUnoZeDxXOMZLsXmWQnxuj2GQk,6618
75
- tests/search/test_search_integration.py,sha256=hKRJJ7hw5qFYhuIyxKzJYyGMY-KLJFwr0CeCBiOAXTE,4274
76
- tests/search/test_search_workflow.py,sha256=l0WF0XURgex1x0X2MKJQbDCJvoxOG5Ou4K8P9nbwfKA,2609
77
- tests/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
- tests/service/test_assistant_service.py,sha256=yTZ1Ej8ZqGXcbqlS5VywMqivv4wvq8caZhDEd47eCcI,21149
79
- tests/service/test_datasource_service.py,sha256=lrXp8iqTLFWu3a2wi8uTE0qU1N1CSRD_N62S49flpl4,17223
80
- tests/service/test_integration_service.py,sha256=N5UqWvrMEBP0ZS6xpYuCRxRVp9LwVdKuAGb2dTpG-4A,7983
81
- tests/service/test_llm_service.py,sha256=lU0O9Q_PMkBr9sPtIPMw_tAjEjn4NY6JVgORXIND1q0,690
82
- tests/service/test_task_service.py,sha256=sQicaTJMslEqj7xcs0pzBtj0Q2nFxxLyd4q4d_A-ZgM,5574
83
- tests/service/test_user_service.py,sha256=MfmJw6A-vIjgvj0JNY3Veu1cH8r3AY3T4Dv6fWTUqh8,814
84
- tests/service/test_workflow_execution_service.py,sha256=OYuQelbQ8iNIMLlFy6Mq3H6eIXNLYEvHA4ZhP3_7XuU,6401
85
- tests/service/test_workflow_service.py,sha256=TusITVDyFLTD4ZRq6RjgCFqrfqM2PTCRWnuVzeJPiHk,8767
86
- tests/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
- tests/test_data/ado_test_plan_tools_test_data.py,sha256=K-k6YX4FnSgVt2VRylI4CCEGbeumzPg_xFWWOMJcCIg,5757
88
- tests/test_data/ado_wiki_tools_test_data.py,sha256=UFycB5GsFiIW-Vnb5WYl1VQ9CWofAfb_HuFUKDd2ZXc,3167
89
- tests/test_data/ado_work_item_tools_test_data.py,sha256=aiLccu3klMxEYMQjL4lLSg1qFP9h1ItaqzEKJ4_STIc,5672
90
- tests/test_data/cloud_tools_test_data.py,sha256=OVAkW6fWptJxHbYXzbzgx6c2yTOOOtJvc4W1ljrCuQs,4659
91
- tests/test_data/codebase_tools_test_data.py,sha256=MjA9MLwiSCwmQjqdO7ZCg8LiYEB9trDZxHwnIIuAgOs,3089
92
- tests/test_data/data_management_tools_test_data.py,sha256=lq0ICWDfIHoWkuuCB6fxYa7-aCmh2pbns5F_cIkkfDc,3780
93
- tests/test_data/direct_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
- tests/test_data/direct_tools/ado_test_plan_tools_test_data.py,sha256=kowneL1T8izSGtbi2Fe0oBKm0ZfT-4VHex0AXKwMHeA,13099
95
- tests/test_data/direct_tools/ado_wiki_tools_test_data.py,sha256=lZr2xa0EVU648vbjbiKOctUrM8WZLKEaXSvkexxuK9E,1411
96
- tests/test_data/direct_tools/ado_work_item_tools_test_data.py,sha256=N8nC6xf6fnrv2BkNX9ylkIDyGuGelECf3P03XEngllc,7396
97
- tests/test_data/direct_tools/cloud_tools_test_data.py,sha256=Lmiw-GXlT4OkWdwqUpGo1Bil3XfS-ExaxrohNsXhDOs,35159
98
- tests/test_data/direct_tools/codebase_tools_test_data.py,sha256=QrI2Pe88L5rPwCZqgfaZFX8ucR7GPTqmC-mmOswCN8M,11066
99
- tests/test_data/direct_tools/data_management_tools_test_data.py,sha256=gk3qE1srP11g_Qx7u3tWQor7dA9SvbVXqIQ_GKGYgsg,672
100
- tests/test_data/direct_tools/direct_tools_test_data.py,sha256=hEy9frn13kqia4Qy7Vx7WtS-euOm5MqYOblWDM2vzgM,3191
101
- tests/test_data/direct_tools/file_management_tools_test_data.py,sha256=uJWn80216agm-_YTIbF5Y72mU7gn6lChM5vFFjH99SI,1359
102
- tests/test_data/direct_tools/notification_tools_test_data.py,sha256=DDqnFiCEvhtH9Sc9KQbdXRgTQmSnn7JFslPyuxGKRhc,1491
103
- tests/test_data/direct_tools/open_api_tools_test_data.py,sha256=-maO_OZahugoKusuUGQ4kQR373BSupOqrbvnCuPgqRY,476
104
- tests/test_data/direct_tools/project_management_tools_test_data.py,sha256=HDmVZPPbkNtylYaGTpMP5OKcNvbBLoOVIlxOmiz6Wjs,20827
105
- tests/test_data/direct_tools/research_tools_test_data.py,sha256=tpukFcY-2dD6ZEHLYFnv_axzj-fEcIvyF2yo-Hu8udY,15220
106
- tests/test_data/direct_tools/servicenow_tools_test_data.py,sha256=d-F3d6AUniYQ5qqnYtDVu0ME6_Xub9XjRLf7Ssx-J4o,5464
107
- tests/test_data/direct_tools/vcs_tools_test_data.py,sha256=ioMJ-eQfa2S1NPmXHyb9UmpBxiYFAvdkPGst8iVnvn8,7164
108
- tests/test_data/file_management_tools_test_data.py,sha256=TP9D2CtrZ_N6BFLcqErW6ggHlN9hUkSKGGGwo4Gt55c,3727
109
- tests/test_data/file_test_data.py,sha256=lhMJBbejENthkDNcg5vvUB-nWFU4zidnPaplQJBU1CM,11712
110
- tests/test_data/files/large-files/large_file.txt,sha256=uLjvYxR0RpLPrXstAfhvfWhMwiWrhsaCl_WV-Lh6GKA,110100480
111
- tests/test_data/files/test.csv,sha256=M1FdTVc3LM74A2g6dQxRfOmJEvyJXRKBzWVzD4lFSno,52
112
- tests/test_data/files/test.docx,sha256=COrp_ujSoOVcG88in3t3w2oGckbd7xovk-ArsOrAq1w,26643
113
- tests/test_data/files/test.gif,sha256=y8UgoZSskETNHFBx5l7dQuoMXhbsPKpYX65kCAWRYI0,3442386
114
- tests/test_data/files/test.ini,sha256=5AmpNeWzjWuUPkjX0d-QB0nswyyJ6ilZc7K29V9ltJU,264
115
- tests/test_data/files/test.jpeg,sha256=RzGESRrqXF35R8fvJovtijEiUu86KRslAHAK9h4fX9g,124982
116
- tests/test_data/files/test.jpg,sha256=RzGESRrqXF35R8fvJovtijEiUu86KRslAHAK9h4fX9g,124982
117
- tests/test_data/files/test.json,sha256=PU2SWV-0sh31J0b7chGJazD1kWNITRKxc0PXrKUWmBw,92
118
- tests/test_data/files/test.pdf,sha256=wlaQPdOVHyTl7SnHh66I1yNiXV_Lo4xkLBtb3il2cRk,80574
119
- tests/test_data/files/test.png,sha256=RzGESRrqXF35R8fvJovtijEiUu86KRslAHAK9h4fX9g,124982
120
- tests/test_data/files/test.pptx,sha256=QPIWD8dB3K5rNkItWa_WaRhpadZt8hQdBR-2aTXc1xo,31896
121
- tests/test_data/files/test.txt,sha256=cmiSP2Evdos-vJuB6fEEdR2XPD6KM4IFHwAKnDDdcwg,30
122
- tests/test_data/files/test.vtt,sha256=OTESV-myaR4TwzGddSBXET0KP11djfgC3tOCwwv4wd8,132
123
- tests/test_data/files/test.xlsx,sha256=J1OprxIMhkoGQRhuOh8oTrbj2pa8VKlSdqp9R0ejgBI,4804
124
- tests/test_data/files/test.xml,sha256=QVn0coF-83PYoGyOZNVEZHW2oX2opIHh7aD6TwBW80s,352
125
- tests/test_data/files/test.yaml,sha256=3NDQyzwkRM5d6eCYMScNMbCqZ0JnjU1T8WcRemuqsc0,392
126
- tests/test_data/git_tools_test_data.py,sha256=8iZNUWvQzrzE-aXMH1CdaGB9pNP9s8ywkU5ZE7AdJRU,8464
127
- tests/test_data/google_datasource_test_data.py,sha256=fhMJVTU0udINKtBQ750c_c279NzibGiZumnIaCPLtBo,511
128
- tests/test_data/index_test_data.py,sha256=jSJ7YSNisFADONRKSwkLUhuOLrSRe_fZisWdjflOjE4,996
129
- tests/test_data/integrations_test_data.py,sha256=fuN1TDBBUj8kFrKzfnoAun7WU_VG5lj41QdQvzr_b4M,6223
130
- tests/test_data/llm_test_data.py,sha256=SCjJ7umqx2YSdGfMu0zoK6GlCwEjfLvWA_kxvzzfEMU,2236
131
- tests/test_data/mcp_server_test_data.py,sha256=kF8sv_HdAYUQTkT4I0LGnG4Oj-_buybEUHi5FIlLvls,7629
132
- tests/test_data/notification_tools_test_data.py,sha256=RmFWcuPrWS-xiZspu5n1wH40_oezh4ZhjomQlXeZ2G8,807
133
- tests/test_data/open_api_tools_test_data.py,sha256=O352v0WjiSDhIj4t3HQ_Ac33Q50EAVwRjX9puYCKQHA,2459
134
- tests/test_data/openapi.json,sha256=X4uqtfjpTUuMifefQRf8mHI1k8pspp8-L0rpJlhLOI4,10459
135
- tests/test_data/output_schema_test_data.py,sha256=4l7AvXbMl9hIvoFxu1LPPSGz9hb5Uz2_is4zTm77ARY,261
136
- tests/test_data/plugin_tools_test_data.py,sha256=vHs4O7MoUD1NiBX3lMJeiThbPSTCftSUjrb8I5UkJVs,2884
137
- tests/test_data/pm_tools_test_data.py,sha256=-H9EF7_0VKiKjSR0Yd1N_ua9QeRT6c23aKLaaQUSu4M,2955
138
- tests/test_data/project_management_test_data.py,sha256=W295_pQZ64yDUZvrpLJ29csnCduZbP-XlKRATXHBuhw,1144
139
- tests/test_data/research_tools_test_data.py,sha256=1yzmgApbjNiGulYdcdl84r0Sz0fkl2cM65IydAUCqIY,4724
140
- tests/test_data/servicenow_tools_test_data.py,sha256=PKw9zEYSNcQM1KApCSjsBiA_3Py0bNQI7clqw8cmT-s,1983
141
- tests/test_data/vcs_tools_test_data.py,sha256=ypKqaWtBtFfvFh4VD6fikWc7ZEAFhVh-MZuZS2PIu6o,2288
142
- tests/test_data/workflow/invalid_config/invalid_assistant_id.yaml,sha256=_cioQNq3icemob9u0i-hXkTy2nflzyP0Ce8FWiPG14M,265
143
- tests/test_data/workflow/invalid_config/invalid_assistant_in_state.yaml,sha256=t_W95zD5bfdGf3F6p64-2qBHz7SkL_7mFT675uieWZg,209
144
- tests/test_data/workflow/invalid_config/invalid_data_source.yaml,sha256=Vwx3HyrQkL8sWNtfwL6d0qiJhru6X3ojKBASAzJeY9w,252
145
- tests/test_data/workflow/invalid_config/invalid_state.yaml,sha256=TPUdlZhz5rR0zH0NQ1pVXK8oBg9nUY3CY0g6jDR2jxE,154
146
- tests/test_data/workflow/invalid_config/invalid_tool.yaml,sha256=oqKnTP9UYpzmwLjVFLxCg60lnvSHEBmTLhA11tqmJ8M,248
147
- tests/test_data/workflow/invalid_config/invalid_yaml.yaml,sha256=rZV5SPvzTU0oKDEhTBSngxIyUQSusrl7wAsYX2rgKNo,253
148
- tests/test_data/workflow/invalid_config/invalid_yaml_format.yaml,sha256=XaW_lvnaPKX5A8lTiymXOR3vur6T5VFNtzl1nqe5pKc,200
149
- tests/test_data/workflow/invalid_config/missing_required_assistant_id.yaml,sha256=P9oCGdQoIhMhzihl_1qDUi2aml2gdcXb_G-sjXqpGs0,183
150
- tests/test_data/workflow/invalid_config/missing_required_assistant_tools_name.yaml,sha256=scMb371A8faocTDqmGdAvCG9QbuCICm8vcJCTYYOSLU,266
151
- tests/test_data/workflow/invalid_config/missing_required_retry_backoff_factor.yaml,sha256=-8xXSbY5u5siuqAhTsmgcYlwnL89xwrqhoxkfDEz3nI,311
152
- tests/test_data/workflow/invalid_config/missing_required_retry_initial_interval.yaml,sha256=aeLYCMDmQhuxeeY_iz1uvnBk4slhjHR7One72aZMd-k,311
153
- tests/test_data/workflow/invalid_config/missing_required_retry_max_attempts.yaml,sha256=gp5GbpNEcXgJKtHyiqjTYTxIOLE9D_QJkdQmO5bPrj4,311
154
- tests/test_data/workflow/invalid_config/missing_required_retry_max_interval.yaml,sha256=sTK9r10wLXj83fzPKUZNl7iiGZg63oBauVt2RMtgNqE,311
155
- tests/test_data/workflow/invalid_config/missing_required_states.yaml,sha256=-riuYrCIcZv1zn4_5w5ol_F_h4dZ_59TBJD4qyFnUrA,226
156
- tests/test_data/workflow/invalid_config/missing_required_states_id.yaml,sha256=7BQRfmkjrqUPP_Q6sjG4OsuW9Eh7Q52OQu2DN7WdYYY,211
157
- tests/test_data/workflow/invalid_config/missing_required_states_next.yaml,sha256=lhBZhtCkQUVPHKtH9uABo-M7lZdqiBTjkqGuSacJz4w,212
158
- tests/test_data/workflow/invalid_config/missing_required_states_next_condition_expression.yaml,sha256=zYpJHKzHy43fdNqSQFl_3HuNkuyG-eD_09syUjXNBJo,287
159
- tests/test_data/workflow/invalid_config/missing_required_states_next_condition_otherwise.yaml,sha256=vZ_OiZaU7HBrB0j0_hADij9oZZqbC3VgIG5cLxr1KkU,287
160
- tests/test_data/workflow/invalid_config/missing_required_states_next_condition_then.yaml,sha256=Kwbv94pV4v1q_nKxUr4oj-ZTqIIZhuZPpgaZHCNrCoc,287
161
- tests/test_data/workflow/invalid_config/missing_required_states_next_switch_cases.yaml,sha256=NX8R27l0we8v9BGpqL3h-3Uw8kxKXVuDSPTFuPTucQ4,387
162
- tests/test_data/workflow/invalid_config/missing_required_states_next_switch_cases_condition.yaml,sha256=1lsFJ0ba41dAX-98jBufyNhfduNb-9r-wjXAXWDEIMg,383
163
- tests/test_data/workflow/invalid_config/missing_required_states_next_switch_cases_state_id.yaml,sha256=gv5-9_mIodOtcRdu11uVTbze98fVx51EWp7YQlnQDJ4,383
164
- tests/test_data/workflow/invalid_config/missing_required_states_next_switch_default.yaml,sha256=tb01b2gx3riwApULsjZOYKk1qF66ccT9IV8zpBDl2JI,383
165
- tests/test_data/workflow/invalid_config/missing_required_states_retry_backoff_factor.yaml,sha256=k7YtQT9ralLEg-G7Ur8lmRM-ie7czFBJBmkxSL39faA,331
166
- tests/test_data/workflow/invalid_config/missing_required_states_retry_initial_interval.yaml,sha256=8qiwidMHWNOsLyg6jjZ0Qrm3PbjHn-DRmoPMvKCYz7k,331
167
- tests/test_data/workflow/invalid_config/missing_required_states_retry_max_attempts.yaml,sha256=1ihhonq9NelCxknBU5ZrYNl3IecMVOeiNqwqt9PH49k,331
168
- tests/test_data/workflow/invalid_config/missing_required_states_retry_max_interval.yaml,sha256=ROhel3gVW0BeSNfg-sNqOTM4XseuzcE96oBnvvW3aTg,331
169
- tests/test_data/workflow/invalid_config/missing_required_system_prompt.yaml,sha256=Wf-inbRGt7wUHcGeIl7KsCq2H3SEsN40iIsQGkoTOhE,163
170
- tests/test_data/workflow/invalid_config/missing_required_tools_id.yaml,sha256=FGfTnDmJSTZZ7fvFqFRNqVbk_jQEk5k4oY3hFlYxec0,267
171
- tests/test_data/workflow/invalid_config/missing_required_tools_name.yaml,sha256=Xh6TKSAGZyD2-gCxaW7BRW_9-_7-5EQA75djCc3FwLI,263
172
- tests/test_data/workflow_validation_messages.py,sha256=zg5BhMJ_tbzEeLSYJEnspHTuWar1qgoxqTfIXltlSPg,3282
173
- tests/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
- tests/ui/conftest.py,sha256=vH6gBkA5OTvX-CNJLAGj-4akyxCwYw2aGbJrMGpoE1A,2469
175
- tests/ui/pageobject/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
- tests/ui/pageobject/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
- tests/ui/pageobject/assistants/assistants_page.py,sha256=EQ2bSHecGxvDo8R6oAF3aqvIbF0zIOROMKQqZP2uaL8,6017
178
- tests/ui/pageobject/base_page.py,sha256=pTCjaHhXFufy8v7_6zRKeSx-ZWBGXZ_BSBBQNnPBLys,7477
179
- tests/ui/pageobject/components/__init__.py,sha256=dmpCrOUTRRL3ADWcJtKBiEnIneRilvhHX86sW73m7PI,583
180
- tests/ui/pageobject/components/execution_history_row.py,sha256=86yU0TeuChO6T_BKlPAFAKtOW_l1PpWdy3Opiz2K-do,6493
181
- tests/ui/pageobject/components/header.py,sha256=OCug-T3LKF5qHumXXx02UzhO1pwkQcLbbhGLkm7y0oY,12016
182
- tests/ui/pageobject/components/pop_up.py,sha256=HIc1hI5WMLwL_PaZ4nc2DWCce3qTsscpo8a8ma2I_YE,3470
183
- tests/ui/pageobject/components/workflow_card.py,sha256=zE8pYb9TUXYTwrdhsIk8e-lwuYQMDlzdlAbcaYriazs,6792
184
- tests/ui/pageobject/components/workflow_execution_history_item.py,sha256=YGCEEvW-XhUelFeLp0BXLlVioKw-GM2bVhDU0KeE8l0,7876
185
- tests/ui/pageobject/components/workflow_execution_state.py,sha256=DH5XGoXY0Sf_parKsWs8XSw4G0WbWhdnOxRk93MUkXs,13836
186
- tests/ui/pageobject/components/workflow_sidebar.py,sha256=UDfYW6J6RMG-jTbK2PSNXkOSra9g5VeGr4SeJET7XMo,17142
187
- tests/ui/pageobject/components/workflow_state_card.py,sha256=V7V1p3FNPrwVFM0CjZeg0MUkW9bGoF8UP5DuuH-r4gU,11548
188
- tests/ui/pageobject/login_page.py,sha256=XsukME3lAzHLqcvW8DQaKrlcT1qQvfyohk4DDZawOso,3011
189
- tests/ui/pageobject/workflows/__init__.py,sha256=UaVz3N_M1qG3EetktyQVM1j03_6XNEmGgyO2W5clLoo,519
190
- tests/ui/pageobject/workflows/base_workflow_form_page.py,sha256=dOPOq9t4h5d02vjiA_CaEcilZRS9PG2STS9EhUbRZZ8,16545
191
- tests/ui/pageobject/workflows/create_workflow_page.py,sha256=SCemNWT6TtXPnISz9rnAvCBpqogHRWO5J66yHYCuoy8,3838
192
- tests/ui/pageobject/workflows/edit_workflow_page.py,sha256=4ROD3uwVYc2EiDrwaFfHNRjk8qRiwoB1PltzF2L-an4,9947
193
- tests/ui/pageobject/workflows/workflow_details_page.py,sha256=udN96A8ufjtxadOkVTS54s19ZNIFtUqC0yXlV41dZ_w,24179
194
- tests/ui/pageobject/workflows/workflow_executions_page.py,sha256=67kJO4y9dMaG0iwqD1sKh6YuchMVil_42dr3Om7Lv0M,20852
195
- tests/ui/pageobject/workflows/workflow_template_details.py,sha256=jm7yPnT5LSMWQ-Qc-jyMG3bPVzeSSY5t0R9k23W415s,3765
196
- tests/ui/pageobject/workflows/workflow_templates_page.py,sha256=rr1cFP5yxmmvwG5moLd_hkAee6cBd0uf8Oz-BTj4jDg,2499
197
- tests/ui/pageobject/workflows/workflows_page.py,sha256=-cbvGcG6Sjbo2S8wL5jletAiTRfwo7n4IYk6M-43k3k,11163
198
- tests/ui/test_create_workflow.py,sha256=McNz6ZNHNnIZMSClC4wN7GL6LiZ5EL8CRSNJarp-CJs,10858
199
- tests/ui/test_edit_workflow.py,sha256=eNubiXxo-kX6rEnlOQWBXCP7bAmjIe997QGx2xLkNms,13174
200
- tests/ui/test_workflow_details.py,sha256=jDxmwuV6QpiM70P8RzAGDtFCSqjtghXoSnsv2dRL-Mk,14911
201
- tests/ui/test_workflow_executions_page.py,sha256=WFOceYlbVCofLqnnGMoFGd4stx9OgNbA9ju9pT_i9u4,11581
202
- tests/ui/test_workflow_templates.py,sha256=hD1loa2H_fDVW4DuxvD0chz8Od27Aa_nA6AU8iOzBm4,4405
203
- tests/ui/test_workflows.py,sha256=xWSeUg3c-Ky7-yNnFkK7KNA3tKpvsCyyPCVfGExc5a4,3434
204
- tests/utils/__init__.py,sha256=IytbI4DHEFmsvw_TJJVUNP6ZB6upkajgpSkw_MAurwc,162
205
- tests/utils/assistant_utils.py,sha256=qL1Midx2pDW0gJHJbyzY64ky5vRfW59mCGb6sCVws3U,5360
206
- tests/utils/aws_parameters_store.py,sha256=fbyRpX_NkSPijXdAzAcwRSS_ukJa1Pxqcu_TJypjlPM,20119
207
- tests/utils/base_utils.py,sha256=9kfGJs-Bp8m2f_lAQACH2rtNxnUYTOcDPWmU4mJX1Gc,5970
208
- tests/utils/client_factory.py,sha256=Yyg2iXe7g7fIfIUbOH8z_8qgVo_lB-nYLOfCV5ONXFw,641
209
- tests/utils/constants.py,sha256=pQB9dC2MgT8X1wPA0rWmGJn4HSWCpUZvvLuI42kw2nY,1090
210
- tests/utils/datasource_utils.py,sha256=Dwos1XAZefm1wjB_EkJ2S9Ax4a74MIDKaOxctGAdaH8,12443
211
- tests/utils/file_utils.py,sha256=hY-kwnyzvtd1BQif8r5NhvRTGfpKLmQKyRsq1Tuflhg,585
212
- tests/utils/gitbud_utils.py,sha256=UJ3RbhPSjHQSdos6S6zTR9iZULrBDJXoXq9cbjFH7bo,7829
213
- tests/utils/http_utils.py,sha256=qsKNvBVN6nrRlz0lZRYhhxdrI6Ecs17KUKo8rsrpJ_o,1598
214
- tests/utils/integration_utils.py,sha256=nP7pqDklkp_xPp4hUjSjZ_MBgeRucjYz1CrDq5Zuw58,4358
215
- tests/utils/json_utils.py,sha256=PWO4Ixxgta_zkdq-8umcP9qwDSi9JFxMuaT2NW3v1eI,226
216
- tests/utils/logger_util.py,sha256=6Kca4pLxyTYnUgm2i3j19DdZSH6XUSGXPjHtExx33QU,828
217
- tests/utils/notification_utils.py,sha256=0x0-yEIH7Azn5Cs2KRXHfQVBJwiwo1F8xSnfaynvQ8Q,3459
218
- tests/utils/pytest_utils.py,sha256=k-mEjX2qpnh37sqKpJqYhZT6BV9974y_KaAhv8Xj9GI,284
219
- tests/utils/search_utils.py,sha256=O8uYyczObhTYtmdL6TVmH5F9xPuppICiGVbixSmRhzo,1108
220
- tests/utils/similarity_check.py,sha256=vUp1ksz80hZwTsykCc027bR3tCXwd3ZdRLmMtYnEjjg,1447
221
- tests/utils/workflow_utils.py,sha256=Z89VdWMy_b3hmzqQT9uPavjNv4ljPYS2pS3tttl3WrQ,4984
222
- tests/utils/yaml_utils.py,sha256=y9fUf4u4G4SoCktPOwaC5x71iaDKhktbz_XUfI9kNis,1661
223
- tests/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
224
- tests/workflow/assistant_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
- tests/workflow/assistant_tools/ado/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
- tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py,sha256=sBhco6R5kfepWBb9jGFE4aHrK7PG_wu2xM-2XdGCz4g,4788
227
- tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_wiki_tools.py,sha256=VaAYk8n0bM3b5nFxvvMWhqXa8TlMnp1PlU_BMJMB0Xk,3391
228
- tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_work_item_tools.py,sha256=l0ELoXX_vzM1W5oWunbkaEXoSuoJGP9RXn_fVLAOq74,3217
229
- tests/workflow/assistant_tools/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
230
- tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py,sha256=oWUITzWoTFmHBuezjuTkFXz8NbJGcbPerTAnGf3bu2o,1128
231
- tests/workflow/assistant_tools/codebase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
- tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py,sha256=KQ61_1d2i8tgHEcwD-FmZjO6t2094uTvg2nVJsOf140,1920
233
- tests/workflow/assistant_tools/data_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
234
- tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py,sha256=lqJRLWxasTnbIPBigIxKvsldgXhRe39dozBwBGc6F6c,2786
235
- tests/workflow/assistant_tools/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
- tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool.py,sha256=dmI19kG6rMDsTBmCAQ23oqkB8rG5PbHQvNCP3MkpT2w,8014
237
- tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py,sha256=9Qjb5m-FKRCE_3uQFOM7WOJKmyzMCbMtJT-qx3kL-B0,8284
238
- tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=cxZnzzqafO0Lhfg60dtfOXZyFXxyV2MWwpn0fuymc-o,10573
239
- tests/workflow/assistant_tools/file_management/__init__.py,sha256=gdro-sbQYZMXgou3dzJw2sqqdS8o7_N41ej5qCA-3v0,53
240
- tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py,sha256=hVJdvt1JrQKTUX_-Nc3T9o3GdPmesWI59o4VeySsDiY,5232
241
- tests/workflow/assistant_tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
242
- tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py,sha256=KNCV4xuqHLSxZgX6l6cwMlnwpWhYhPIsF0p5dNlyYk0,11851
243
- tests/workflow/assistant_tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
244
- tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py,sha256=-Dot5ES59Vr4jdDkMstWnH-839L7xlMcxgrcuRFi2jM,2713
245
- tests/workflow/assistant_tools/notification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
- tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py,sha256=ABnTXiGECBOBtTx-rzun9qhpF4Kl-X9f5YaRoBsUvcY,2257
247
- tests/workflow/assistant_tools/open_api/__init__.py,sha256=s6X-VOfd5UR7yxRL90VvL21YdYs1rPd6wkGFSfOI3Qs,46
248
- tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py,sha256=K1PG1oaYucN6PoprCXTUlmOoeu7mSXQm2imggjwg6LE,1000
249
- tests/workflow/assistant_tools/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
- tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_development_plugin.py,sha256=DFtBiIgXj-jm0sfkz88P7yaDBTDcUjfvZTGIejyLEI0,2975
251
- tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_plugin_and_mcp_servers.py,sha256=RiR9AeVm9laK5Rb3kLSLV3H3d8cspUfBEKTsj1lldVQ,2079
252
- tests/workflow/assistant_tools/project_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
253
- tests/workflow/assistant_tools/project_management/test_workflow_with_assistant_pm_tools.py,sha256=5gI3u76ykwrKf06wuUfJxMvcDyF7HPDv05mJpxMTy9g,1161
254
- tests/workflow/assistant_tools/research/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
255
- tests/workflow/assistant_tools/research/test_workflow_with_assistant_research_tools.py,sha256=rpKnJR81xxDdRqBCW7vRwMBnfBhb5P8axk5WdDziyns,1841
256
- tests/workflow/assistant_tools/servicenow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
- tests/workflow/assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=DvmG1woYh9ZZOXhaqSItbwyi0A9_VtMd_s0582YIHm0,741
258
- tests/workflow/assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
- tests/workflow/assistant_tools/vcs/workflow_with_assistant_vcs_tools.py,sha256=-UtKRD8vMDG75bJb_kZiF6mCzlr33YXUopirN1WLFpo,957
260
- tests/workflow/config_validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
261
- tests/workflow/config_validation/test_config_validation.py,sha256=AzNy7ZB4mUuPFgFYwdVFm1N006F0iDu2ZwQSsa1hPy4,3942
262
- tests/workflow/direct_tools_calling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
263
- tests/workflow/direct_tools_calling/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
264
- tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool.py,sha256=hM4C9S4lKcKAi2v4trpPCVRttk8WySqU9GXghM8Kjts,8085
265
- tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool_kit.py,sha256=6aifaEuYuCiIWy-CIGjiuIg96N_ciX6YgZOrDy0fwyE,8281
266
- tests/workflow/direct_tools_calling/test_workflow_with_ado_test_plan_tools.py,sha256=HNJ9wxLcc5DnFSCdDrzM0WmOIkafyRT5YckUxhoA8O8,2643
267
- tests/workflow/direct_tools_calling/test_workflow_with_ado_wiki_tools.py,sha256=hQUDj71Uzt0zkNjPP_b_opXfFl-SnUb9rpHxUO65jAk,2693
268
- tests/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py,sha256=sXGmqswUXgjZbfRWAbz65ZvcGe1AJVquKFahGn8LfEM,2757
269
- tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py,sha256=0gjWaURg61PDhW7E16K7qam50OESdIBZw7puPcxJwKk,3467
270
- tests/workflow/direct_tools_calling/test_workflow_with_codebase_tools.py,sha256=Lbq9Oe7N1HXYTypHHSZLjSinbMHKhvw574eq7C2ptmc,3737
271
- tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py,sha256=dE8y6mTpmNiBL6t_OFBzKZrYwtQiJaAVBFG9TfYaxV8,3674
272
- tests/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py,sha256=pNAqimzrCRdxo3t_XtaPRR6a6Ddi3yvnzYg9E9VlhAk,2631
273
- tests/workflow/direct_tools_calling/test_workflow_with_notification_tools.py,sha256=wl8BMUzOILiQ4u7MnMmKjUXWBuZ4piQrIxZoi-TswHs,2847
274
- tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py,sha256=B8fXmgaqQtFSFNYAYblhvLNZiEFQTL4yVTif1F4OEoQ,2907
275
- tests/workflow/direct_tools_calling/test_workflow_with_plugin_tools.py,sha256=58Q5bsV4AJQypgAVGhWGzjzOTRHNgddGCbhDvvoojqI,3883
276
- tests/workflow/direct_tools_calling/test_workflow_with_project_management_tools.py,sha256=jwB9wPjWAJmqb1fjyfau1foRQ2S9DYLbq1UtGZ1uCUM,3126
277
- tests/workflow/direct_tools_calling/test_workflow_with_research_tools.py,sha256=WUTDag0EE8yZ_E2W3Rieb0YohBrlCxMHL1pXrKy8JYc,2342
278
- tests/workflow/direct_tools_calling/test_workflow_with_servicenow_tools.py,sha256=23oLSXygKWFDUhqBXE8mfz7E4ADbm-Ky83BPErcCgao,2122
279
- tests/workflow/direct_tools_calling/test_workflow_with_vcs_tools.py,sha256=xiklXap9uL52SZ8jkWKf--PqUj8NLSYRyvREo_jrtB4,2942
280
- tests/workflow/test_workflows.py,sha256=frL8hxSxFZKUTrc6oNZLs2Pj585gt4QZCWfJw1LaHsE,1078
281
- tests/workflow/virtual_assistant_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
282
- tests/workflow/virtual_assistant_tools/ado/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
- tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_test_plan_tools.py,sha256=YSVohbWXCX7yVZytk8trwzKzalpf7pw-ZeoJzBuG4xg,5680
284
- tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_wiki_tools.py,sha256=xoQh9OI81aG78q731FsM_7T_0CGvGBtZGBdR6vvBnBA,4085
285
- tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_work_item_tools.py,sha256=XNkwtjZRYqY4RhLbpYfoEqZIj0OZm_N--9_-6pqL_0k,3663
286
- tests/workflow/virtual_assistant_tools/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
287
- tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py,sha256=9D11YxfMLyW4idgaTouj17pJEGDZQpk_BFKPTWzoaEw,1349
288
- tests/workflow/virtual_assistant_tools/codebase/__init__.py,sha256=kCzJLR44IfB9ZncaLNOtyUqlzvyOG3BXclsDFS5MaQg,46
289
- tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py,sha256=XXRNWUxz2xOEV_dUf7URNv4WCuIv5iMJwgjJ2zHEUxQ,3007
290
- tests/workflow/virtual_assistant_tools/data_management/__init__.py,sha256=Vk3MBJAVfJA8uxRJdY3aH_5lCWkTBcE_l9xw5FzUt7I,53
291
- tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py,sha256=pQi-6Hgh4q2-tPa38H5rGs4oQKS4Ha74ufTHkygriOI,3053
292
- tests/workflow/virtual_assistant_tools/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
293
- tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool.py,sha256=R3iRrSpWZhE73oq4YRfId84VoEtWxd1gbt6BJMA3nQA,7931
294
- tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py,sha256=qhhJKJlrvdEacgXVITGd69GQrrS2vABPhnWu9A_DIEo,8221
295
- tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=TtV7TnznhyHogjIOc2QQ44qhus1e-XEVonwe07v4YR8,10569
296
- tests/workflow/virtual_assistant_tools/file_management/__init__.py,sha256=gdro-sbQYZMXgou3dzJw2sqqdS8o7_N41ej5qCA-3v0,53
297
- tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py,sha256=-JKiOptfoxkZn6gWoCmTviYKVeS__qErVaxaXz6abbE,6342
298
- tests/workflow/virtual_assistant_tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
- tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py,sha256=ykd_H8wuzG6jr0JwHDdDWJJdZ6eKdDy_QUBkvRPWlPg,12228
300
- tests/workflow/virtual_assistant_tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
301
- tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py,sha256=3D68El65A717vaHbrEOS-FUaBDJTH7MAkzCGkvKT-hY,3014
302
- tests/workflow/virtual_assistant_tools/notification/__init__.py,sha256=hUDnGT_v3FoV6qsGpdACg_DfBFlfuubj8FjZLiuMrt0,50
303
- tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py,sha256=u2ajLMIuJelfTfVg9jdQo6Qs7FZLNp3Oc-lfrLmn1y0,2359
304
- tests/workflow/virtual_assistant_tools/open_api/__init__.py,sha256=s6X-VOfd5UR7yxRL90VvL21YdYs1rPd6wkGFSfOI3Qs,46
305
- tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py,sha256=dv6UP62jI2zWC5ISMSa8OuT3jWH9ix_WIruFQFFSyFU,1084
306
- tests/workflow/virtual_assistant_tools/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
307
- tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_development_plugin.py,sha256=eapBdjFUQYmj-iuumUOTTruf-ixnfKWcYCAcm-Q8sTE,3136
308
- tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_plugin_and_mcp_servers.py,sha256=24pN2PNFU_ruYnfx6uroIQAp_5wfa2qKyDnUIWuJMNE,2202
309
- tests/workflow/virtual_assistant_tools/project_management/__init__.py,sha256=64jHPoFuGaohGEe-2iYPlEvB8pOG_ZANKzZRubVC4qQ,56
310
- tests/workflow/virtual_assistant_tools/project_management/test_workflow_with_project_management_tools.py,sha256=EVS9RPzfIAzz2DKdhZ1W-8dl1vqbetDyluDd8cOx1Mk,1170
311
- tests/workflow/virtual_assistant_tools/research/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
- tests/workflow/virtual_assistant_tools/research/test_workflow_with_research_tools.py,sha256=oLtK6IX2K_MD4OGTR8IP59DqztIQoRjCXnlYQVIJghw,1975
313
- tests/workflow/virtual_assistant_tools/servicenow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
314
- tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=ecTfkwxPMbyyEKS-dArAQkluZURO1nThwDdD66mgC3E,814
315
- tests/workflow/virtual_assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
316
- tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py,sha256=G0iI3X7SGEEy1Z2Hc7j917saY3lpzgfil_GtALCFilE,1043
317
- codemie_test_harness-0.1.129.dist-info/METADATA,sha256=V09DaqvdDMoQgQ1qpq92RcIx49tyo77k8LSUqPTTkXw,8998
318
- codemie_test_harness-0.1.129.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
319
- codemie_test_harness-0.1.129.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
320
- codemie_test_harness-0.1.129.dist-info/RECORD,,
tests/utils/http_utils.py DELETED
@@ -1,53 +0,0 @@
1
- import logging
2
- from typing import TypeVar, Type, Optional, Any, Union, Dict, List
3
-
4
- import requests
5
- from pydantic import BaseModel
6
-
7
- from codemie_sdk.utils.http import ApiRequestHandler
8
- from codemie_sdk.utils.http import log_request
9
-
10
- T = TypeVar("T", bound=Union[BaseModel, List[BaseModel], dict])
11
-
12
- logger = logging.getLogger(__name__)
13
-
14
-
15
- class RequestHandler(ApiRequestHandler):
16
- """Handles HTTP requests with consistent error handling and response parsing."""
17
-
18
- @log_request
19
- def post(
20
- self,
21
- endpoint: str,
22
- response_model: Type[T],
23
- json_data: Optional[Dict[str, Any]] = None,
24
- stream: bool = False,
25
- wrap_response: bool = True,
26
- ) -> Union[T, requests.Response]:
27
- """Makes a POST request and parses the response.
28
-
29
- Args:
30
- endpoint: API endpoint path
31
- response_model: Pydantic model class or List[Model] for response
32
- json_data: JSON request body
33
- stream: Whether to return streaming response
34
- wrap_response: Whether response is wrapped in 'data' field
35
-
36
- Returns:
37
- Parsed response object/list or streaming response
38
- """
39
- if json_data:
40
- logger.debug(f"Request body: {json_data}")
41
-
42
- response = requests.post(
43
- url=f"{self._base_url}{endpoint}",
44
- headers=self._get_headers(),
45
- json=json_data,
46
- verify=self._verify_ssl,
47
- stream=stream,
48
- )
49
-
50
- if stream:
51
- return response
52
-
53
- return self._parse_response(response, response_model, wrap_response)
File without changes
File without changes
File without changes
File without changes
File without changes