codemie-test-harness 0.1.179__py3-none-any.whl → 0.1.180__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.
- codemie_test_harness/cli/cli.py +2 -0
- codemie_test_harness/cli/commands/marks_cmd.py +39 -0
- codemie_test_harness/cli/marks_utils.py +338 -0
- codemie_test_harness/cli/runner.py +40 -0
- codemie_test_harness/tests/assistant/datasource/test_code_datasource.py +3 -3
- codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py +3 -3
- codemie_test_harness/tests/assistant/datasource/test_file_indexing.py +5 -5
- codemie_test_harness/tests/assistant/datasource/test_google_datasource.py +3 -3
- codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py +3 -3
- codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool.py +8 -8
- codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_kit.py +8 -8
- codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_with_datasource.py +8 -8
- codemie_test_harness/tests/assistant/test_assistants.py +22 -22
- codemie_test_harness/tests/assistant/tools/access_management/test_keycloak_tool.py +1 -1
- codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_test_plan_tools.py +2 -2
- codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_wiki_tools.py +2 -2
- codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_work_item_tools.py +2 -2
- codemie_test_harness/tests/assistant/tools/cloud/test_cloud_tools.py +1 -1
- codemie_test_harness/tests/assistant/tools/codebase/test_codebase_tools.py +2 -2
- codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py +2 -2
- codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py +4 -4
- codemie_test_harness/tests/assistant/tools/git/test_assistant_with_git_tools.py +7 -7
- codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py +2 -2
- codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py +2 -2
- codemie_test_harness/tests/assistant/tools/notification/test_assistant_notification_tools.py +2 -2
- codemie_test_harness/tests/assistant/tools/openapi/test_assistant_with_open_api_tools.py +1 -1
- codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_development_plugin.py +2 -2
- codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py +2 -2
- codemie_test_harness/tests/assistant/tools/plugin/test_single_assistant_dual_time_plugins.py +1 -1
- codemie_test_harness/tests/assistant/tools/project_management/test_assistant_pm_tools.py +6 -6
- codemie_test_harness/tests/assistant/tools/report_portal/test_assistant_report_portal_tools.py +1 -1
- codemie_test_harness/tests/assistant/tools/research/test_assistant_research_tools.py +2 -2
- codemie_test_harness/tests/assistant/tools/servicenow/test_servicenow_tools.py +1 -1
- codemie_test_harness/tests/assistant/tools/vcs/test_assistant_with_vcs_tools.py +1 -1
- codemie_test_harness/tests/conversations/test_conversations_endpoints.py +5 -5
- codemie_test_harness/tests/e2e/test_e2e.py +6 -6
- codemie_test_harness/tests/integrations/project/test_default_integrations.py +14 -14
- codemie_test_harness/tests/integrations/project/test_project_integrations.py +9 -9
- codemie_test_harness/tests/integrations/user/test_default_integrations.py +14 -14
- codemie_test_harness/tests/integrations/user/test_user_integrations.py +12 -12
- codemie_test_harness/tests/llm/assistants/test_lite_llm.py +2 -2
- codemie_test_harness/tests/llm/assistants/test_llm.py +3 -3
- codemie_test_harness/tests/providers/test_providers_endpoints.py +11 -11
- codemie_test_harness/tests/search/test_search_assistant.py +1 -1
- codemie_test_harness/tests/search/test_search_datasource.py +5 -5
- codemie_test_harness/tests/search/test_search_integration.py +2 -2
- codemie_test_harness/tests/search/test_search_workflow.py +1 -1
- codemie_test_harness/tests/service/test_assistant_service.py +1 -1
- codemie_test_harness/tests/test_data/codebase_tools_test_data.py +11 -5
- codemie_test_harness/tests/ui/assistants/test_create_assistant.py +11 -11
- codemie_test_harness/tests/ui/datasource/test_create_datasource.py +7 -7
- codemie_test_harness/tests/ui/datasource/test_datasource_page.py +3 -3
- codemie_test_harness/tests/ui/datasource/test_edit_datasource.py +5 -5
- codemie_test_harness/tests/ui/datasource/test_view_datasource.py +5 -5
- codemie_test_harness/tests/ui/integrations/test_create_integration.py +9 -9
- codemie_test_harness/tests/ui/workflows/test_create_workflow.py +12 -12
- codemie_test_harness/tests/ui/workflows/test_edit_workflow.py +15 -15
- codemie_test_harness/tests/ui/workflows/test_workflow_details.py +19 -19
- codemie_test_harness/tests/ui/workflows/test_workflow_executions_page.py +36 -36
- codemie_test_harness/tests/ui/workflows/test_workflow_templates.py +8 -8
- codemie_test_harness/tests/ui/workflows/test_workflows.py +8 -8
- codemie_test_harness/tests/workflow/assistant_tools/access_management/test_workflow_with_assistant_with_keycloak_tool.py +1 -1
- codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py +2 -2
- codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_wiki_tools.py +2 -2
- codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_work_item_tools.py +2 -2
- codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py +1 -1
- codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py +2 -2
- codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py +2 -2
- codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool.py +8 -8
- codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +8 -8
- codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +8 -8
- codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py +5 -5
- codemie_test_harness/tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py +7 -7
- codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py +3 -3
- codemie_test_harness/tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py +2 -2
- codemie_test_harness/tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py +1 -1
- codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_development_plugin.py +2 -2
- codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_plugin_and_mcp_servers.py +2 -2
- codemie_test_harness/tests/workflow/assistant_tools/project_management/test_workflow_with_assistant_pm_tools.py +1 -1
- codemie_test_harness/tests/workflow/assistant_tools/report_portal/test_workflow_with_assistant_with_report_portal_tools.py +1 -1
- codemie_test_harness/tests/workflow/assistant_tools/research/test_workflow_with_assistant_research_tools.py +2 -2
- codemie_test_harness/tests/workflow/assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +1 -1
- codemie_test_harness/tests/workflow/assistant_tools/vcs/workflow_with_assistant_vcs_tools.py +1 -1
- codemie_test_harness/tests/workflow/config_validation/test_config_validation.py +1 -1
- codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool.py +8 -8
- codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool_kit.py +8 -8
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_access_management_tool.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_test_plan_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_wiki_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_codebase_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_elastic.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_sql.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_notification_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_plugin_tools.py +4 -4
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_project_management_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_report_portal_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_research_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_servicenow_tools.py +3 -3
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_vcs_tools.py +3 -3
- codemie_test_harness/tests/workflow/test_workflows.py +1 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/access_management/test_workflow_with_keycloak_tool.py +1 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_test_plan_tools.py +2 -2
- codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_wiki_tools.py +2 -2
- codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_work_item_tools.py +2 -2
- codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py +4 -4
- codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py +2 -2
- codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py +2 -2
- codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool.py +8 -8
- codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +8 -8
- codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +8 -8
- codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py +5 -5
- codemie_test_harness/tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py +7 -7
- codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py +3 -3
- codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py +4 -4
- codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py +2 -2
- codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_development_plugin.py +2 -2
- codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_plugin_and_mcp_servers.py +2 -2
- codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/test_workflow_with_project_management_tools.py +2 -2
- codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/test_workflow_with_report_portal_tool.py +1 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/research/test_workflow_with_research_tools.py +2 -2
- codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +1 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py +1 -1
- {codemie_test_harness-0.1.179.dist-info → codemie_test_harness-0.1.180.dist-info}/METADATA +8 -8
- {codemie_test_harness-0.1.179.dist-info → codemie_test_harness-0.1.180.dist-info}/RECORD +130 -128
- {codemie_test_harness-0.1.179.dist-info → codemie_test_harness-0.1.180.dist-info}/WHEEL +0 -0
- {codemie_test_harness-0.1.179.dist-info → codemie_test_harness-0.1.180.dist-info}/entry_points.txt +0 -0
|
@@ -1,72 +1,74 @@
|
|
|
1
1
|
codemie_test_harness/.env,sha256=qwCZaT0wIqswimUpuny4SfHOG6FsLClAAtjddztA3GQ,177
|
|
2
2
|
codemie_test_harness/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
codemie_test_harness/cli/__init__.py,sha256=da1PTClDMl-IBkrSvq6JC1lnS-K_BASzCvxVhNxN5Ls,13
|
|
4
|
-
codemie_test_harness/cli/cli.py,sha256=
|
|
4
|
+
codemie_test_harness/cli/cli.py,sha256=3vQzJUDNlR1j_WHVy0FlBUaOPRR6wXMYA_kP2BJDrH0,4229
|
|
5
5
|
codemie_test_harness/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
codemie_test_harness/cli/commands/assistant_cmd.py,sha256=LuAWMFuZPYdP51dNcqjalur8CHobkSVlt49f97cgJEg,3076
|
|
7
7
|
codemie_test_harness/cli/commands/config_cmd.py,sha256=fmeU3TYmjtbpsbfyEuOmjHDi502xAw4Pc5tWdSfeyVY,22477
|
|
8
|
+
codemie_test_harness/cli/commands/marks_cmd.py,sha256=8mKGJNLkGBVZRw2DwCDUAyZOO2fKyfV18J60eaB5eCY,1392
|
|
8
9
|
codemie_test_harness/cli/commands/run_cmd.py,sha256=T5js1hwHKi1QuF-kLwP3c-GMtiO9QO15H3JJc7nzpp4,1052
|
|
9
10
|
codemie_test_harness/cli/commands/workflow_cmd.py,sha256=QwT_6DAyjeWBZiamvGuBBi6JKh9Cu-wS756xClWmpzI,1784
|
|
10
11
|
codemie_test_harness/cli/constants.py,sha256=ktce9RjSa3YcsXH4fISbIDhfbek3bVJ5FuWdIcEZsdI,12459
|
|
11
|
-
codemie_test_harness/cli/
|
|
12
|
+
codemie_test_harness/cli/marks_utils.py,sha256=CGAIMWO7EqApYTl3qMxBkREjA3yOQOQGjqgbxQ6bL1s,11164
|
|
13
|
+
codemie_test_harness/cli/runner.py,sha256=-C81VRkarxCLzBlhZtvq6Pc_DO3FHNYyZBqtVHnw_Q0,3636
|
|
12
14
|
codemie_test_harness/cli/utils.py,sha256=CcF3Ww4Aphbh8V3dlUH96-GkL7ccSVCmqra9Yqo5hXE,1304
|
|
13
15
|
codemie_test_harness/pytest.ini,sha256=Tqi0sGis9Dwhg6Y0OEEx-S8aXRONezUUXsWt6fdjEnA,223
|
|
14
16
|
codemie_test_harness/tests/__init__.py,sha256=CX5mbH_1RzwetK14moYQ0KCoUBPQMGkI14Fg8tAUJ0A,782
|
|
15
17
|
codemie_test_harness/tests/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
18
|
codemie_test_harness/tests/assistant/datasource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
codemie_test_harness/tests/assistant/datasource/test_code_datasource.py,sha256=
|
|
18
|
-
codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py,sha256=
|
|
19
|
-
codemie_test_harness/tests/assistant/datasource/test_file_indexing.py,sha256=
|
|
20
|
-
codemie_test_harness/tests/assistant/datasource/test_google_datasource.py,sha256=
|
|
21
|
-
codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py,sha256=
|
|
19
|
+
codemie_test_harness/tests/assistant/datasource/test_code_datasource.py,sha256=en5qmAAPSQMpuIUBntfdA0qhXMwlQatSZ5cYmoar8Lc,2710
|
|
20
|
+
codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py,sha256=NXrO25CzzubfDzKuy6aI9N9CXa-ddKou7YS0b4fo-eA,3549
|
|
21
|
+
codemie_test_harness/tests/assistant/datasource/test_file_indexing.py,sha256=9HZq336-OKws9_WrCp96LKUMQsxuLniRfa7vCISbMNw,5711
|
|
22
|
+
codemie_test_harness/tests/assistant/datasource/test_google_datasource.py,sha256=KP3n789MV_zJ5OV_v1aeSpfEzX-0-yCrfVVRg3COF0Y,2335
|
|
23
|
+
codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py,sha256=SXlU5SPRuYroRuw6It-_P1eY2uuRRfMoJ5DDhrIM980,3311
|
|
22
24
|
codemie_test_harness/tests/assistant/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool.py,sha256=
|
|
24
|
-
codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_kit.py,sha256=
|
|
25
|
-
codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=
|
|
26
|
-
codemie_test_harness/tests/assistant/test_assistants.py,sha256=
|
|
25
|
+
codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool.py,sha256=mESvd3Dx87uNnrq3BojAnkyEM6xwATYMrbHh3I3dPJ8,7522
|
|
26
|
+
codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_kit.py,sha256=3W5ek00F9ewKXBgSVTGYGKO0EI45p9OyGL4srxGEOCI,7793
|
|
27
|
+
codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=RF9xDURViycFOpAVJmYdd6ftn_pos13eHRXeoFW9lfI,10108
|
|
28
|
+
codemie_test_harness/tests/assistant/test_assistants.py,sha256=pEZpzay8sZeG0fQPInWBVCQjyjR8COExxSdUbhkllUI,15225
|
|
27
29
|
codemie_test_harness/tests/assistant/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
30
|
codemie_test_harness/tests/assistant/tools/access_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
codemie_test_harness/tests/assistant/tools/access_management/test_keycloak_tool.py,sha256=
|
|
31
|
+
codemie_test_harness/tests/assistant/tools/access_management/test_keycloak_tool.py,sha256=t8In1sIWSqSqAagyaABWChy5WzL0Xe23BjpLA9oMN4Q,733
|
|
30
32
|
codemie_test_harness/tests/assistant/tools/ado/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
-
codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_test_plan_tools.py,sha256=
|
|
32
|
-
codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_wiki_tools.py,sha256=
|
|
33
|
-
codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_work_item_tools.py,sha256=
|
|
33
|
+
codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_test_plan_tools.py,sha256=ptXzOrjJK5mOMdQBrnZRYqF1mUdzHyRjbNH74b2tENs,4999
|
|
34
|
+
codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_wiki_tools.py,sha256=ClKa_j-WYFwrYlVDt6Qk1xAVy-mGck4RyLbsQjO4jkQ,3538
|
|
35
|
+
codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_work_item_tools.py,sha256=h67AvHAsFMqIivfunVYA6bsa4wwDR-jUepElg9aHN08,3433
|
|
34
36
|
codemie_test_harness/tests/assistant/tools/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
codemie_test_harness/tests/assistant/tools/cloud/test_cloud_tools.py,sha256=
|
|
37
|
+
codemie_test_harness/tests/assistant/tools/cloud/test_cloud_tools.py,sha256=IZa5dvkekkS6HgDZcPRLJhA42Al5x9QpFlfm7f6fUak,801
|
|
36
38
|
codemie_test_harness/tests/assistant/tools/codebase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
codemie_test_harness/tests/assistant/tools/codebase/test_codebase_tools.py,sha256
|
|
39
|
+
codemie_test_harness/tests/assistant/tools/codebase/test_codebase_tools.py,sha256=pM4_6CXsnt424DYFbFzWEiFWyOhXZaaEt6RVqBJRfTo,1613
|
|
38
40
|
codemie_test_harness/tests/assistant/tools/datamanagement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py,sha256=
|
|
41
|
+
codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py,sha256=FiG8PFomgqXiCuC3H8GBJDE0Ds0J0ff4j9nCPH1czCw,2671
|
|
40
42
|
codemie_test_harness/tests/assistant/tools/filemanagement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
-
codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py,sha256=
|
|
43
|
+
codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py,sha256=fPAl7pHkY-cTfXv_QICyqc5J2QF5eMLQHenPgoFngkE,3884
|
|
42
44
|
codemie_test_harness/tests/assistant/tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
codemie_test_harness/tests/assistant/tools/git/test_assistant_with_git_tools.py,sha256=
|
|
45
|
+
codemie_test_harness/tests/assistant/tools/git/test_assistant_with_git_tools.py,sha256=kUPCJlCAextDcBti-3HcAyNoye1X8_rI1JfdufxjZsw,11036
|
|
44
46
|
codemie_test_harness/tests/assistant/tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
-
codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py,sha256=
|
|
46
|
-
codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py,sha256=
|
|
47
|
+
codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py,sha256=f52qZqr_X6NXj7h2JeABv81-vJiVAgQD3HxhMNjh_yQ,2628
|
|
48
|
+
codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py,sha256=OKqNFe_cE1A7OiHbLPLoLrohSQRQt5145eVHLoqRV4c,1372
|
|
47
49
|
codemie_test_harness/tests/assistant/tools/notification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
-
codemie_test_harness/tests/assistant/tools/notification/test_assistant_notification_tools.py,sha256=
|
|
50
|
+
codemie_test_harness/tests/assistant/tools/notification/test_assistant_notification_tools.py,sha256=b-GY5iJptPepqVE-1xBW54dvPR7ZEaW2RqIt7h8aqhc,2637
|
|
49
51
|
codemie_test_harness/tests/assistant/tools/openapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
-
codemie_test_harness/tests/assistant/tools/openapi/test_assistant_with_open_api_tools.py,sha256=
|
|
52
|
+
codemie_test_harness/tests/assistant/tools/openapi/test_assistant_with_open_api_tools.py,sha256=WBdciP-FkdWnIRSFCZMyxQBQ4xrx2-pFn3F1QJyJPlY,1075
|
|
51
53
|
codemie_test_harness/tests/assistant/tools/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
-
codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_development_plugin.py,sha256=
|
|
53
|
-
codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py,sha256=
|
|
54
|
-
codemie_test_harness/tests/assistant/tools/plugin/test_single_assistant_dual_time_plugins.py,sha256=
|
|
54
|
+
codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_development_plugin.py,sha256=dsf-JYIoM1mQJHuMGJNZfB4u7aD545_JWimyxfdv9hs,2646
|
|
55
|
+
codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py,sha256=OnKT9w4lQOIdBNm7hmu-IidNlU1mJ0LyX7Qa_jhx57A,1836
|
|
56
|
+
codemie_test_harness/tests/assistant/tools/plugin/test_single_assistant_dual_time_plugins.py,sha256=6SyGZZD21e6kIb7Ws7pFcBin-o7HJsmREb1kHZYJp4k,5100
|
|
55
57
|
codemie_test_harness/tests/assistant/tools/project_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
|
-
codemie_test_harness/tests/assistant/tools/project_management/test_assistant_pm_tools.py,sha256=
|
|
58
|
+
codemie_test_harness/tests/assistant/tools/project_management/test_assistant_pm_tools.py,sha256=WY9EJMk5VSMnH6Hj0RHqiVC_5btGaGl9ozvTkUjJCXs,5235
|
|
57
59
|
codemie_test_harness/tests/assistant/tools/report_portal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
-
codemie_test_harness/tests/assistant/tools/report_portal/test_assistant_report_portal_tools.py,sha256=
|
|
60
|
+
codemie_test_harness/tests/assistant/tools/report_portal/test_assistant_report_portal_tools.py,sha256=5pQeV2feXy2WdiH-nHdUi-axsLtWIDHmS4E7chGkqOw,781
|
|
59
61
|
codemie_test_harness/tests/assistant/tools/research/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
|
-
codemie_test_harness/tests/assistant/tools/research/test_assistant_research_tools.py,sha256=
|
|
62
|
+
codemie_test_harness/tests/assistant/tools/research/test_assistant_research_tools.py,sha256=3fWc84rxvDeiz1xT1QBFfT2HHT3KneuIMJC1lZN11n0,1652
|
|
61
63
|
codemie_test_harness/tests/assistant/tools/servicenow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
-
codemie_test_harness/tests/assistant/tools/servicenow/test_servicenow_tools.py,sha256=
|
|
64
|
+
codemie_test_harness/tests/assistant/tools/servicenow/test_servicenow_tools.py,sha256=rhF8VwiEQ5ay6BfTdNCwkqRnkV0TRW_9sbKbN2ssd4Q,684
|
|
63
65
|
codemie_test_harness/tests/assistant/tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
-
codemie_test_harness/tests/assistant/tools/vcs/test_assistant_with_vcs_tools.py,sha256=
|
|
66
|
+
codemie_test_harness/tests/assistant/tools/vcs/test_assistant_with_vcs_tools.py,sha256=duExIINfu5bB2jujREw1OUqMdusR2yzCYlU_SJktrUc,955
|
|
65
67
|
codemie_test_harness/tests/conftest.py,sha256=gQAP5Yvznf7ruxRLf4mAuk_AhuZjQXP7mMIiw7ue1P8,30275
|
|
66
68
|
codemie_test_harness/tests/conversations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
|
-
codemie_test_harness/tests/conversations/test_conversations_endpoints.py,sha256=
|
|
69
|
+
codemie_test_harness/tests/conversations/test_conversations_endpoints.py,sha256=HQ2nu9lXfRNkyJhA0rzar7Rmv6pMe-te0rFYAy-X5UA,4128
|
|
68
70
|
codemie_test_harness/tests/e2e/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
codemie_test_harness/tests/e2e/test_e2e.py,sha256=
|
|
71
|
+
codemie_test_harness/tests/e2e/test_e2e.py,sha256=hnNNq4HOED4lX3ZdwQcLQTPWtsXf8LlQ8vYphx6tNIk,6604
|
|
70
72
|
codemie_test_harness/tests/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
73
|
codemie_test_harness/tests/enums/environment.py,sha256=R3z7VetKeaJorUyrB5hKmlZVMyjHiAw4R5vREcBfdpU,3051
|
|
72
74
|
codemie_test_harness/tests/enums/integrations.py,sha256=hG_cEKN0N5gtGHyrh3wuCpNAWhPyNOJaKsAw16iNshg,164
|
|
@@ -74,24 +76,24 @@ codemie_test_harness/tests/enums/model_types.py,sha256=XtLT0breZ1y6QWjmzc6Qw664Z
|
|
|
74
76
|
codemie_test_harness/tests/enums/tools.py,sha256=7vZeQFo9FYgNt2q7LVpAvzyKDLbqtxapIeZo-g3cE2s,5772
|
|
75
77
|
codemie_test_harness/tests/integrations/__init__.py,sha256=5vnZbxvYQ1Y91O8DJG3QfBHWcdYsMii59cMBzsvHBCg,237
|
|
76
78
|
codemie_test_harness/tests/integrations/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
codemie_test_harness/tests/integrations/project/test_default_integrations.py,sha256=
|
|
78
|
-
codemie_test_harness/tests/integrations/project/test_project_integrations.py,sha256=
|
|
79
|
+
codemie_test_harness/tests/integrations/project/test_default_integrations.py,sha256=_ZEkIU0lt7lnJaGiIpm8QtRp2cBZJ4aB1ATv4Vn2Olw,12112
|
|
80
|
+
codemie_test_harness/tests/integrations/project/test_project_integrations.py,sha256=bI2SP28UsUSbFu4vCLYwxZ6cgfCEJlFTKJfkk4rWXds,7927
|
|
79
81
|
codemie_test_harness/tests/integrations/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
|
-
codemie_test_harness/tests/integrations/user/test_default_integrations.py,sha256=
|
|
81
|
-
codemie_test_harness/tests/integrations/user/test_user_integrations.py,sha256=
|
|
82
|
+
codemie_test_harness/tests/integrations/user/test_default_integrations.py,sha256=iOcE8lvRwnOsIly-Ls-kPhL1-x-uGVsaHQAWNFzB3fY,12064
|
|
83
|
+
codemie_test_harness/tests/integrations/user/test_user_integrations.py,sha256=SOhRIP7JlH61LqYc37haWmeApqf0FDggl-K6W022pj4,8076
|
|
82
84
|
codemie_test_harness/tests/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
85
|
codemie_test_harness/tests/llm/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
84
|
-
codemie_test_harness/tests/llm/assistants/test_lite_llm.py,sha256=
|
|
85
|
-
codemie_test_harness/tests/llm/assistants/test_llm.py,sha256=
|
|
86
|
+
codemie_test_harness/tests/llm/assistants/test_lite_llm.py,sha256=jYtf_J7lBSmB1LmmXWjGHkMWmpcqAJ3l_IJovgYxmZM,3683
|
|
87
|
+
codemie_test_harness/tests/llm/assistants/test_llm.py,sha256=jSzDESTqLh5pgb4TCnZSOc3M_wHZAEi0yMR4E3ziUNk,3510
|
|
86
88
|
codemie_test_harness/tests/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
-
codemie_test_harness/tests/providers/test_providers_endpoints.py,sha256=
|
|
89
|
+
codemie_test_harness/tests/providers/test_providers_endpoints.py,sha256=iV9pxFOxTPVbk8aH8RGFjVDUCUDMUiRWcDMrvwqoTqk,8043
|
|
88
90
|
codemie_test_harness/tests/search/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
89
|
-
codemie_test_harness/tests/search/test_search_assistant.py,sha256=
|
|
90
|
-
codemie_test_harness/tests/search/test_search_datasource.py,sha256=
|
|
91
|
-
codemie_test_harness/tests/search/test_search_integration.py,sha256=
|
|
92
|
-
codemie_test_harness/tests/search/test_search_workflow.py,sha256=
|
|
91
|
+
codemie_test_harness/tests/search/test_search_assistant.py,sha256=dMTH619tOWKSCLpEVTnrClEEDEo10tqe8o4rSfs4SXs,3269
|
|
92
|
+
codemie_test_harness/tests/search/test_search_datasource.py,sha256=qFxopY4w8U7EgY_vh74V0ra315iW-7u16r9APzgw5W8,6871
|
|
93
|
+
codemie_test_harness/tests/search/test_search_integration.py,sha256=VmLskvwiDfxrQmBGd_K9sDFb55UBSFDX9E3spcM8JjY,4463
|
|
94
|
+
codemie_test_harness/tests/search/test_search_workflow.py,sha256=wYJGLycQnEDLPfG47ULYmtdixne65j3ZFDTR1iQYsVU,2707
|
|
93
95
|
codemie_test_harness/tests/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
|
-
codemie_test_harness/tests/service/test_assistant_service.py,sha256=
|
|
96
|
+
codemie_test_harness/tests/service/test_assistant_service.py,sha256=RzUFp465ZycK92MhsJiHD_4jTDKqSCi22mYAWVpcBWU,17833
|
|
95
97
|
codemie_test_harness/tests/service/test_datasource_service.py,sha256=MzZSD8CyZuIRsMxPv-T3IdN5NUib7AZ56HSdmSmmikk,15747
|
|
96
98
|
codemie_test_harness/tests/service/test_integration_service.py,sha256=ODQJhBRELTIy75aFpZt_-axJHbB1wwrX6oz7JGNjtus,7529
|
|
97
99
|
codemie_test_harness/tests/service/test_llm_service.py,sha256=aBJz6Z82JzeWeTuhHTVaRm1Cm7lJMKGRMQ1f6rIalTQ,543
|
|
@@ -105,7 +107,7 @@ codemie_test_harness/tests/test_data/ado_wiki_tools_test_data.py,sha256=xvgEja5v
|
|
|
105
107
|
codemie_test_harness/tests/test_data/ado_work_item_tools_test_data.py,sha256=4Y195fG7K7FfjXXapEuTmAEz7YkBgkuO2YCQKu5YC8k,5693
|
|
106
108
|
codemie_test_harness/tests/test_data/assistant_test_data.py,sha256=yFyctUA5-3DYXNeRVxZUa3wVQH77e2M3quZXKQo0Gt0,46675
|
|
107
109
|
codemie_test_harness/tests/test_data/cloud_tools_test_data.py,sha256=SWz-VTNcWteCvVupl2xksv4eEFkmtWMdRIqrZxjpFYk,6200
|
|
108
|
-
codemie_test_harness/tests/test_data/codebase_tools_test_data.py,sha256=
|
|
110
|
+
codemie_test_harness/tests/test_data/codebase_tools_test_data.py,sha256=YXnG-KB-Bt893iLpniDnKeJISunFLKnyxuABtG-QJok,3403
|
|
109
111
|
codemie_test_harness/tests/test_data/data_management_tools_test_data.py,sha256=e5Cfqza3GUE3hRElm1bxgQO4PaN-jOiNd38OX9299Kc,2793
|
|
110
112
|
codemie_test_harness/tests/test_data/direct_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
113
|
codemie_test_harness/tests/test_data/direct_tools/ado_test_plan_tools_test_data.py,sha256=bDhoeFRlmafSZdRgOTOz122Q5tja7TsqtOxSTypeGVA,13120
|
|
@@ -200,15 +202,15 @@ codemie_test_harness/tests/ui/_test_data/assistant_test_data.py,sha256=DRfungbLN
|
|
|
200
202
|
codemie_test_harness/tests/ui/_test_data/datasource_test_data.py,sha256=Ubx8o1NPxiJ2adaz6IDpwXDKB9_yE40v5_0az__CX0I,3489
|
|
201
203
|
codemie_test_harness/tests/ui/_test_data/integration_test_data.py,sha256=6YnDIWhOSTSmzIziBCfpqYikVT0kXw_vMrMJBmhnSnQ,4212
|
|
202
204
|
codemie_test_harness/tests/ui/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
|
-
codemie_test_harness/tests/ui/assistants/test_create_assistant.py,sha256=
|
|
205
|
+
codemie_test_harness/tests/ui/assistants/test_create_assistant.py,sha256=HFyKXFyla3jROVG6wPvbfE2Rpn0lsOX3iBSJRsfgmhA,14527
|
|
204
206
|
codemie_test_harness/tests/ui/conftest.py,sha256=KBM3g-lxPQEtbNh6i-1bAYYRlVycbEXg7ztn3x7VobI,4361
|
|
205
207
|
codemie_test_harness/tests/ui/datasource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
206
|
-
codemie_test_harness/tests/ui/datasource/test_create_datasource.py,sha256=
|
|
207
|
-
codemie_test_harness/tests/ui/datasource/test_datasource_page.py,sha256
|
|
208
|
-
codemie_test_harness/tests/ui/datasource/test_edit_datasource.py,sha256=
|
|
209
|
-
codemie_test_harness/tests/ui/datasource/test_view_datasource.py,sha256=
|
|
208
|
+
codemie_test_harness/tests/ui/datasource/test_create_datasource.py,sha256=o52lmMuachvlA10rTkOnTeSCPfWGIT1Y7eavyVNAUfc,6425
|
|
209
|
+
codemie_test_harness/tests/ui/datasource/test_datasource_page.py,sha256=zsjWp8x0oqtKXNVoS5QuQa6P9xoJk9DltQWer82tpXA,2326
|
|
210
|
+
codemie_test_harness/tests/ui/datasource/test_edit_datasource.py,sha256=x9_u_GA4P0bxGgmQbm6z3n4J7dpJxAIGD3PUQb02CN0,6424
|
|
211
|
+
codemie_test_harness/tests/ui/datasource/test_view_datasource.py,sha256=dw3cWslcfHYjCrWebCAmqXmgYorsyggx6TAkQLYq_hY,7771
|
|
210
212
|
codemie_test_harness/tests/ui/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
|
-
codemie_test_harness/tests/ui/integrations/test_create_integration.py,sha256=
|
|
213
|
+
codemie_test_harness/tests/ui/integrations/test_create_integration.py,sha256=K0YzgpCgQInyGvSRZBLnS89IckWSX3qzbjTUkkuQm3U,11935
|
|
212
214
|
codemie_test_harness/tests/ui/pageobject/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
215
|
codemie_test_harness/tests/ui/pageobject/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
216
|
codemie_test_harness/tests/ui/pageobject/assistants/assistants_page.py,sha256=E3aEXpmMhjcmJsO_nE52WdbHXOoK-Hp9vqIw4rEPzrU,6043
|
|
@@ -244,12 +246,12 @@ codemie_test_harness/tests/ui/pageobject/workflows/workflow_template_details.py,
|
|
|
244
246
|
codemie_test_harness/tests/ui/pageobject/workflows/workflow_templates_page.py,sha256=J5jxdZ2aQ9k15ghyRKYACxX2F9NiR6dXYBw0EaYlaN0,2645
|
|
245
247
|
codemie_test_harness/tests/ui/pageobject/workflows/workflows_page.py,sha256=yqdaSTA4aUeD-8A9Or0OgJZhMr2tDvDWWP_f4uPL5dw,11186
|
|
246
248
|
codemie_test_harness/tests/ui/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
247
|
-
codemie_test_harness/tests/ui/workflows/test_create_workflow.py,sha256=
|
|
248
|
-
codemie_test_harness/tests/ui/workflows/test_edit_workflow.py,sha256=
|
|
249
|
-
codemie_test_harness/tests/ui/workflows/test_workflow_details.py,sha256=
|
|
250
|
-
codemie_test_harness/tests/ui/workflows/test_workflow_executions_page.py,sha256=
|
|
251
|
-
codemie_test_harness/tests/ui/workflows/test_workflow_templates.py,sha256=
|
|
252
|
-
codemie_test_harness/tests/ui/workflows/test_workflows.py,sha256=
|
|
249
|
+
codemie_test_harness/tests/ui/workflows/test_create_workflow.py,sha256=fCq3Dz9fSGmIS0C_gLSDPuLomSunxSI_XlTEszO2iG0,10486
|
|
250
|
+
codemie_test_harness/tests/ui/workflows/test_edit_workflow.py,sha256=kJUPqqmJB7aN-J1Dfvgk2M0N3OQcShXLlfUcTEuWD4I,12868
|
|
251
|
+
codemie_test_harness/tests/ui/workflows/test_workflow_details.py,sha256=Pz9K8zFlZg2-gBjYsgbty3XQF9Kz6BuY1GI2tRDwqP0,15341
|
|
252
|
+
codemie_test_harness/tests/ui/workflows/test_workflow_executions_page.py,sha256=rcPQDlfmpxEWB1hRhkit8TcHs3R_kBrqsILA2iWS2NQ,12559
|
|
253
|
+
codemie_test_harness/tests/ui/workflows/test_workflow_templates.py,sha256=u3EK7FkwjdGLK2JoDhc4gcVFtVXT-2-1UKBlFL-XlR0,4656
|
|
254
|
+
codemie_test_harness/tests/ui/workflows/test_workflows.py,sha256=zRBFiQYhJ_MWKGGxUgGNsiTbs8P8Zw6HCuJXzkABvj0,3817
|
|
253
255
|
codemie_test_harness/tests/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
254
256
|
codemie_test_harness/tests/utils/assistant_utils.py,sha256=jy3dFF4ZiT22Wippl1a5jIEAAyJ71P0ss8AIHPefz6k,6511
|
|
255
257
|
codemie_test_harness/tests/utils/aws_parameters_store.py,sha256=YAVpvwElkKZJZvzSVxtOue1Gjs-kvSBS2y5QvIlz484,3267
|
|
@@ -279,109 +281,109 @@ codemie_test_harness/tests/utils/yaml_utils.py,sha256=y9fUf4u4G4SoCktPOwaC5x71ia
|
|
|
279
281
|
codemie_test_harness/tests/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
280
282
|
codemie_test_harness/tests/workflow/assistant_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
283
|
codemie_test_harness/tests/workflow/assistant_tools/access_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
282
|
-
codemie_test_harness/tests/workflow/assistant_tools/access_management/test_workflow_with_assistant_with_keycloak_tool.py,sha256=
|
|
284
|
+
codemie_test_harness/tests/workflow/assistant_tools/access_management/test_workflow_with_assistant_with_keycloak_tool.py,sha256=tehJsN2qj5CQzB7iAhRW64NE2a-wkI0cpcBiCjc5a-c,906
|
|
283
285
|
codemie_test_harness/tests/workflow/assistant_tools/ado/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
284
|
-
codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py,sha256
|
|
285
|
-
codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_wiki_tools.py,sha256=
|
|
286
|
-
codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_work_item_tools.py,sha256=
|
|
286
|
+
codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py,sha256=-Cvm_ee8MLVNiR8r_qFaoulTyJSX11giUSHz18twoj4,5031
|
|
287
|
+
codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_wiki_tools.py,sha256=Tf5h0nq2K6UKSbrrZU_xMLkHFu843ZUtr6qAgZtFrYI,3592
|
|
288
|
+
codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_work_item_tools.py,sha256=0Ujv319jmrrnCsLp7jeNg9YZL2zldAf-0YuojiwQDl0,3460
|
|
287
289
|
codemie_test_harness/tests/workflow/assistant_tools/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
288
|
-
codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py,sha256=
|
|
290
|
+
codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py,sha256=tD1WxAGPYORxvYAF1WJosEbUmOyZONSssKH76tX6y8k,969
|
|
289
291
|
codemie_test_harness/tests/workflow/assistant_tools/codebase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
290
|
-
codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py,sha256=
|
|
292
|
+
codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py,sha256=J6TyQkMieGEWCJzWG6QREHO1Vqd0iFgaCsmZzInrSbA,2023
|
|
291
293
|
codemie_test_harness/tests/workflow/assistant_tools/data_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
292
|
-
codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py,sha256=
|
|
294
|
+
codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py,sha256=A4faHMDWhr4iR9GIDdPbNIqXhxToEZkwbHRFCwQRQOU,2977
|
|
293
295
|
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
294
|
-
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool.py,sha256=
|
|
295
|
-
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py,sha256=
|
|
296
|
-
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=
|
|
296
|
+
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool.py,sha256=nlNp-mtZNNiB7rD8u2dYEApvcSEJC83IX-mX3aMMuHA,8738
|
|
297
|
+
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py,sha256=gGoP2QODM_Awx4pdcOQo-9rGm9T44ek5O7Un45PXIVE,9004
|
|
298
|
+
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=M6YHvDnhUI_I92neID4t3xeXbvwhQmlPZovJeZp2JJU,11413
|
|
297
299
|
codemie_test_harness/tests/workflow/assistant_tools/file_management/__init__.py,sha256=gdro-sbQYZMXgou3dzJw2sqqdS8o7_N41ej5qCA-3v0,53
|
|
298
|
-
codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py,sha256=
|
|
300
|
+
codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py,sha256=B123CLm2tHnt6ax2JJowblYoZpSI1X2stc7PKOGUbfc,5578
|
|
299
301
|
codemie_test_harness/tests/workflow/assistant_tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
300
|
-
codemie_test_harness/tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py,sha256=
|
|
302
|
+
codemie_test_harness/tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py,sha256=dPgq_b2-IyLxXEO-Ez6016QDOy7XW7Wq0cE8PKugs3s,12397
|
|
301
303
|
codemie_test_harness/tests/workflow/assistant_tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
302
|
-
codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py,sha256=
|
|
304
|
+
codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py,sha256=CMWdUt5W_dv-npArY_dbffPEnkdD49EcDHhg61RU3ms,2789
|
|
303
305
|
codemie_test_harness/tests/workflow/assistant_tools/notification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
304
|
-
codemie_test_harness/tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py,sha256=
|
|
306
|
+
codemie_test_harness/tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py,sha256=Rs6CJ-FQg17LgHO2_9shDkN1NfzhZBcarz-HRMy6Rog,2654
|
|
305
307
|
codemie_test_harness/tests/workflow/assistant_tools/open_api/__init__.py,sha256=s6X-VOfd5UR7yxRL90VvL21YdYs1rPd6wkGFSfOI3Qs,46
|
|
306
|
-
codemie_test_harness/tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py,sha256=
|
|
308
|
+
codemie_test_harness/tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py,sha256=byGOgP7mJHhnuKYEdMLgmKJVMWV0pBTKufIhTEFWuVo,1200
|
|
307
309
|
codemie_test_harness/tests/workflow/assistant_tools/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
308
|
-
codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_development_plugin.py,sha256=
|
|
309
|
-
codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_plugin_and_mcp_servers.py,sha256=
|
|
310
|
+
codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_development_plugin.py,sha256=ZHbzI6sGfLl3tXPV02Q9KzgWSy9iuJ8VEeoT2KcX34s,3163
|
|
311
|
+
codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_plugin_and_mcp_servers.py,sha256=sm3tKjt8UZornc3ZJsOuuorHzxOTMxzHsX8bSmhVM94,2280
|
|
310
312
|
codemie_test_harness/tests/workflow/assistant_tools/project_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
311
|
-
codemie_test_harness/tests/workflow/assistant_tools/project_management/test_workflow_with_assistant_pm_tools.py,sha256=
|
|
313
|
+
codemie_test_harness/tests/workflow/assistant_tools/project_management/test_workflow_with_assistant_pm_tools.py,sha256=JRg9rGw1cc3gfAyxc94kLOxDisKDgzSec_SJnEjcK6w,1317
|
|
312
314
|
codemie_test_harness/tests/workflow/assistant_tools/report_portal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
|
-
codemie_test_harness/tests/workflow/assistant_tools/report_portal/test_workflow_with_assistant_with_report_portal_tools.py,sha256=
|
|
315
|
+
codemie_test_harness/tests/workflow/assistant_tools/report_portal/test_workflow_with_assistant_with_report_portal_tools.py,sha256=FRtsMl0IUfZyLQ-nMJW3jU6argc4FddS1FYxAz8FPP8,974
|
|
314
316
|
codemie_test_harness/tests/workflow/assistant_tools/research/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
|
-
codemie_test_harness/tests/workflow/assistant_tools/research/test_workflow_with_assistant_research_tools.py,sha256=
|
|
317
|
+
codemie_test_harness/tests/workflow/assistant_tools/research/test_workflow_with_assistant_research_tools.py,sha256=QXMXQhDe1OdGoTF3rqP1nbvtF_2XGY6quEGV2QhpWnE,2052
|
|
316
318
|
codemie_test_harness/tests/workflow/assistant_tools/servicenow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
|
-
codemie_test_harness/tests/workflow/assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=
|
|
319
|
+
codemie_test_harness/tests/workflow/assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=VkxeWkuziLDsr-J5biTMyPjcwL9lYDO51dLgCmPIV8g,872
|
|
318
320
|
codemie_test_harness/tests/workflow/assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
|
-
codemie_test_harness/tests/workflow/assistant_tools/vcs/workflow_with_assistant_vcs_tools.py,sha256=
|
|
321
|
+
codemie_test_harness/tests/workflow/assistant_tools/vcs/workflow_with_assistant_vcs_tools.py,sha256=9duAlZXOtu145VviCqGxSaJXY--dxtt-0sALXZIAqdM,1089
|
|
320
322
|
codemie_test_harness/tests/workflow/config_validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
321
|
-
codemie_test_harness/tests/workflow/config_validation/test_config_validation.py,sha256=
|
|
323
|
+
codemie_test_harness/tests/workflow/config_validation/test_config_validation.py,sha256=FYgVRHptImFMjG0TfGLHcU6TG8c4gIh4woF8hbxSTVA,4020
|
|
322
324
|
codemie_test_harness/tests/workflow/direct_tools_calling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
323
325
|
codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool.py,sha256=
|
|
325
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool_kit.py,sha256=
|
|
326
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_access_management_tool.py,sha256=
|
|
327
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_test_plan_tools.py,sha256=
|
|
328
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_wiki_tools.py,sha256=
|
|
329
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py,sha256=
|
|
330
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py,sha256=
|
|
331
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_codebase_tools.py,sha256=
|
|
332
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_elastic.py,sha256=
|
|
333
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_sql.py,sha256=
|
|
334
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py,sha256=
|
|
335
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_notification_tools.py,sha256=
|
|
336
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py,sha256=
|
|
337
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_plugin_tools.py,sha256=
|
|
338
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_project_management_tools.py,sha256=
|
|
339
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_report_portal_tools.py,sha256=
|
|
340
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_research_tools.py,sha256=
|
|
341
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_servicenow_tools.py,sha256=
|
|
342
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_vcs_tools.py,sha256=
|
|
343
|
-
codemie_test_harness/tests/workflow/test_workflows.py,sha256=
|
|
326
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool.py,sha256=NykjBPtLT5PrhlhSOneJGpl4DhYe0kPq6enww0GbNKk,8646
|
|
327
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool_kit.py,sha256=vWHOeAMA-GvPn1pts60-jRFDzTpNv9jTr3W_MNQQqoU,8837
|
|
328
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_access_management_tool.py,sha256=iaHxVMSctBOgoB8tNK1ESvxhzLv6pysu2FzxoBnYqA0,2553
|
|
329
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_test_plan_tools.py,sha256=UdYRgnLSmg8_ELt4sxeMMYzi4oO2QFvdJxGwymg6OPg,2856
|
|
330
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_wiki_tools.py,sha256=JcwDqIHoOSo_PzrGC1G4gOT-8hqsD7C9uOFc816h0Z4,2915
|
|
331
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py,sha256=A3Vp4GHuJrPRBleHvo-rcrLsmzdY8ILlaENdL-395uc,2970
|
|
332
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py,sha256=Xr6tyZsvFRQfRG-dEhckBYw5JIKbDbRCwZudNoFBpQA,3704
|
|
333
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_codebase_tools.py,sha256=auiJl38ADk3C4qHrTiigMasycs7eyZWPCaOaQW8MzRM,3949
|
|
334
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_elastic.py,sha256=NzPxNdxLYAySIDzsP1ttF4BiDuk9kibHipFpqavKHAA,3271
|
|
335
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_sql.py,sha256=8Clmo81Kd6Y_sEn532f4nhsIYvGy8REDGCPiFZyvPno,4161
|
|
336
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py,sha256=Ii7b65srfwk16jYALy5BzMhVErE3GPBWZ2M3JLkjqo0,2880
|
|
337
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_notification_tools.py,sha256=YzhsmmfidBYsGymBoO3q2WM9zw2zZfq7uOj90-bPN0c,2983
|
|
338
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py,sha256=CkF5VikbCMQyGoeibF9Al50AN-GW83F6k1usow17YlY,3208
|
|
339
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_plugin_tools.py,sha256=k8k0WlR0nJwr7OP61vHZ3a2Zvn9g4Gy2W1boiuiBXG0,4106
|
|
340
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_project_management_tools.py,sha256=BiMmDw5f7KNoYH1IfNX-7syV6CJV-4kP1U4OTSRJ6u4,3405
|
|
341
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_report_portal_tools.py,sha256=JnhO37kHaggOmrta9xIXPFp98t-uTWQo4SCwkgSLJmU,3120
|
|
342
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_research_tools.py,sha256=lQzzWV6mcKH1_8k4-OxXoI9_hb48JJbYAmDT9bj-WQ0,2558
|
|
343
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_servicenow_tools.py,sha256=meR9c8BgMTgM6LpwqE0n7ygTCIHGVooMvYfb6kGF7UE,2377
|
|
344
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_vcs_tools.py,sha256=dbfjHnIhjneW3_JZyElvmswE7omOp0A0EgzoztZ7vow,3098
|
|
345
|
+
codemie_test_harness/tests/workflow/test_workflows.py,sha256=9AJbZ3URcJH3M9yu6NMJmO7BXv8-CibiznN-qk38DmA,1156
|
|
344
346
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
347
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/access_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/access_management/test_workflow_with_keycloak_tool.py,sha256=
|
|
348
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/access_management/test_workflow_with_keycloak_tool.py,sha256=rumjMkiicHRbAbWOkGf_W6kLM5wg81wdmbiMP9nv4ms,988
|
|
347
349
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_test_plan_tools.py,sha256=
|
|
349
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_wiki_tools.py,sha256=
|
|
350
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_work_item_tools.py,sha256=
|
|
350
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_test_plan_tools.py,sha256=gfOySey2HWc6qSshxwU4nycapEqr7pzwhiqKCpBjIfY,5909
|
|
351
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_wiki_tools.py,sha256=wFzCvhlnGSzhK6DfaSylB3Es7vfPNeOT3kZ7vNEqNaI,4272
|
|
352
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_work_item_tools.py,sha256=RquOD2VI1Qv_20jwpGnTtdFPoOOeAnKXoc-I5ypPmuU,3892
|
|
351
353
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
352
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py,sha256=
|
|
354
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py,sha256=6o9UQpwr6oMLRPu-0cuDuF68IYWj-Li9-WHbyYZXO2k,1207
|
|
353
355
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/__init__.py,sha256=kCzJLR44IfB9ZncaLNOtyUqlzvyOG3BXclsDFS5MaQg,46
|
|
354
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py,sha256=
|
|
356
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py,sha256=Po6rZWh9O_tvmaCL7wlcCMQPNijb5HchoOi2ALTa9ZY,3152
|
|
355
357
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/__init__.py,sha256=Vk3MBJAVfJA8uxRJdY3aH_5lCWkTBcE_l9xw5FzUt7I,53
|
|
356
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py,sha256=
|
|
358
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py,sha256=0BA6YeFREXVkFmhgaoPDbpzwoCzXpbM4X3jXT9PRjAs,3251
|
|
357
359
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool.py,sha256=
|
|
359
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py,sha256=
|
|
360
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=
|
|
360
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool.py,sha256=XurPFAHj8EsP-Rc1g6yolCCa_G5FoiWKsGISFVj5XLs,8641
|
|
361
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py,sha256=vPxcjzFS9oo4pFYny3qk5gCdtELANSYOrAOEKly7GS0,8927
|
|
362
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=XCv9SOlxAHn6_jMmNCpCgkgsAkSTpmHqSt_UCDNzncQ,11395
|
|
361
363
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/__init__.py,sha256=gdro-sbQYZMXgou3dzJw2sqqdS8o7_N41ej5qCA-3v0,53
|
|
362
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py,sha256=
|
|
364
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py,sha256=tnmCCt43y6_xQ17bJOux3docNuSzTabaEumcq37yc48,6653
|
|
363
365
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py,sha256=
|
|
366
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py,sha256=SnmWTEesrUWdRRS4eTFTpdrf1ui5RFXE-QYc_ZDWzKY,12725
|
|
365
367
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
366
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py,sha256=
|
|
368
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py,sha256=RPscgsttF-vWSsAu7bwLPTQwvtXjWqpW4mdO2kR1usg,3089
|
|
367
369
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/__init__.py,sha256=hUDnGT_v3FoV6qsGpdACg_DfBFlfuubj8FjZLiuMrt0,50
|
|
368
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py,sha256=
|
|
370
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py,sha256=2I5F8rkNNu2nSy8-LHJULh_1BzTYhjArKXCVXwJMriA,2764
|
|
369
371
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/__init__.py,sha256=s6X-VOfd5UR7yxRL90VvL21YdYs1rPd6wkGFSfOI3Qs,46
|
|
370
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py,sha256=
|
|
372
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py,sha256=UMBBoTQkekSy3v2DVhgRKZXApeHqtfAfP_QXRmxrA-k,1277
|
|
371
373
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
372
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_development_plugin.py,sha256=
|
|
373
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_plugin_and_mcp_servers.py,sha256=
|
|
374
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_development_plugin.py,sha256=p9_qhaUTMFkFnSgmg8Cjix0hhazYSnl7dDcmY74pWSA,3310
|
|
375
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_plugin_and_mcp_servers.py,sha256=R_FP-EMnv775NMii6OxEUpxMMI7u0fzNRZsDhQYbKZU,2410
|
|
374
376
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/__init__.py,sha256=64jHPoFuGaohGEe-2iYPlEvB8pOG_ZANKzZRubVC4qQ,56
|
|
375
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/test_workflow_with_project_management_tools.py,sha256=
|
|
377
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/test_workflow_with_project_management_tools.py,sha256=A0UOa4EvJe5q4U4yyzmIYRLTlJzTrT6dOo7qsrI_Yjo,1320
|
|
376
378
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
377
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/test_workflow_with_report_portal_tool.py,sha256=
|
|
379
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/test_workflow_with_report_portal_tool.py,sha256=u2VolZFPplEASpgBZmqUkc6uYXSOecKDNkC_uBxodw4,1083
|
|
378
380
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/research/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
379
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/research/test_workflow_with_research_tools.py,sha256=
|
|
381
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/research/test_workflow_with_research_tools.py,sha256=5S2llgqOC5oFOhqPbfpTEaunORl93bqOUyCRNptjxPM,2185
|
|
380
382
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
381
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=
|
|
383
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=JXjpdBTd8QH85UQaQ8z0mbBQzJUasNKKTw9-a84uvxA,959
|
|
382
384
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
383
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py,sha256=
|
|
384
|
-
codemie_test_harness-0.1.
|
|
385
|
-
codemie_test_harness-0.1.
|
|
386
|
-
codemie_test_harness-0.1.
|
|
387
|
-
codemie_test_harness-0.1.
|
|
385
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py,sha256=xgEZlZya6H8HvYhAtN0-9yIsTjuPSYfZ0IPGL7WI06Q,1168
|
|
386
|
+
codemie_test_harness-0.1.180.dist-info/METADATA,sha256=cR5Tiih3t0uqbnsXg6-63Utspuus3L6YHx27du6zADc,18261
|
|
387
|
+
codemie_test_harness-0.1.180.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
388
|
+
codemie_test_harness-0.1.180.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
|
|
389
|
+
codemie_test_harness-0.1.180.dist-info/RECORD,,
|
|
File without changes
|
{codemie_test_harness-0.1.179.dist-info → codemie_test_harness-0.1.180.dist-info}/entry_points.txt
RENAMED
|
File without changes
|