codemie-test-harness 0.1.158__py3-none-any.whl → 0.1.160__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/tests/assistant/datasource/test_confluence_datasource.py +2 -1
- codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py +2 -1
- codemie_test_harness/tests/assistant/tools/cloud/test_cloud_tools.py +0 -7
- codemie_test_harness/tests/assistant/tools/codebase/test_codebase_tools.py +0 -1
- codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py +4 -5
- codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py +2 -9
- codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py +5 -7
- codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py +5 -7
- codemie_test_harness/tests/assistant/tools/notification/test_assistant_notification_tools.py +3 -3
- codemie_test_harness/tests/assistant/tools/openapi/test_assistant_with_open_api_tools.py +3 -2
- codemie_test_harness/tests/assistant/tools/report_portal/__init__.py +0 -0
- codemie_test_harness/tests/assistant/tools/report_portal/test_assistant_report_portal_tools.py +32 -0
- codemie_test_harness/tests/conftest.py +17 -2
- codemie_test_harness/tests/enums/environment.py +102 -0
- codemie_test_harness/tests/enums/model_types.py +1 -0
- codemie_test_harness/tests/enums/tools.py +14 -0
- codemie_test_harness/tests/integrations/project/test_default_integrations.py +47 -12
- codemie_test_harness/tests/integrations/project/test_project_integrations.py +0 -125
- codemie_test_harness/tests/integrations/user/test_default_integrations.py +47 -11
- codemie_test_harness/tests/integrations/user/test_user_integrations.py +0 -125
- codemie_test_harness/tests/llm/assistants/test_llm.py +3 -3
- codemie_test_harness/tests/service/test_assistant_service.py +2 -2
- codemie_test_harness/tests/test_data/cloud_tools_test_data.py +32 -11
- codemie_test_harness/tests/test_data/codebase_tools_test_data.py +2 -0
- codemie_test_harness/tests/test_data/data_management_tools_test_data.py +3 -3
- codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py +7 -4
- codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py +2 -0
- codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py +4 -5
- codemie_test_harness/tests/test_data/direct_tools/file_management_tools_test_data.py +2 -2
- codemie_test_harness/tests/test_data/direct_tools/notification_tools_test_data.py +5 -2
- codemie_test_harness/tests/test_data/direct_tools/project_management_tools_test_data.py +2 -0
- codemie_test_harness/tests/test_data/direct_tools/report_portal_tools_test_data.py +1235 -0
- codemie_test_harness/tests/test_data/direct_tools/research_tools_test_data.py +1 -0
- codemie_test_harness/tests/test_data/direct_tools/vcs_tools_test_data.py +3 -0
- codemie_test_harness/tests/test_data/file_management_tools_test_data.py +9 -5
- codemie_test_harness/tests/test_data/index_test_data.py +9 -11
- codemie_test_harness/tests/test_data/integrations_test_data.py +71 -9
- codemie_test_harness/tests/test_data/llm_test_data.py +8 -6
- codemie_test_harness/tests/test_data/project_management_test_data.py +4 -0
- codemie_test_harness/tests/test_data/report_portal_tools_test_data.py +520 -0
- codemie_test_harness/tests/test_data/vcs_tools_test_data.py +11 -2
- codemie_test_harness/tests/utils/aws_parameters_store.py +33 -2
- codemie_test_harness/tests/utils/constants.py +1 -1
- codemie_test_harness/tests/utils/env_resolver.py +119 -0
- codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py +0 -7
- codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py +0 -1
- codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py +3 -5
- codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py +2 -9
- codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py +5 -10
- codemie_test_harness/tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py +3 -2
- codemie_test_harness/tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py +3 -2
- codemie_test_harness/tests/workflow/assistant_tools/report_portal/__init__.py +0 -0
- codemie_test_harness/tests/workflow/assistant_tools/report_portal/test_workflow_with_assistant_with_report_portal_tools.py +38 -0
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_sql.py +3 -2
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py +3 -2
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_report_portal_tools.py +115 -0
- codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py +0 -7
- codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py +0 -1
- codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py +3 -5
- codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py +2 -9
- codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py +5 -11
- codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py +3 -3
- codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py +3 -3
- codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/__init__.py +0 -0
- codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/test_workflow_with_report_portal_tool.py +39 -0
- {codemie_test_harness-0.1.158.dist-info → codemie_test_harness-0.1.160.dist-info}/METADATA +2 -2
- {codemie_test_harness-0.1.158.dist-info → codemie_test_harness-0.1.160.dist-info}/RECORD +69 -58
- {codemie_test_harness-0.1.158.dist-info → codemie_test_harness-0.1.160.dist-info}/WHEEL +0 -0
- {codemie_test_harness-0.1.158.dist-info → codemie_test_harness-0.1.160.dist-info}/entry_points.txt +0 -0
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import os
|
|
2
|
-
|
|
3
1
|
import pytest
|
|
4
2
|
|
|
5
3
|
from codemie_test_harness.tests.test_data.open_api_tools_test_data import (
|
|
6
4
|
open_api_tools_test_data,
|
|
7
5
|
)
|
|
8
6
|
from codemie_test_harness.tests.utils.base_utils import get_random_name
|
|
7
|
+
from codemie_test_harness.tests.utils.env_resolver import EnvironmentResolver
|
|
9
8
|
|
|
10
9
|
|
|
11
10
|
@pytest.mark.workflow
|
|
@@ -14,7 +13,8 @@ from codemie_test_harness.tests.utils.base_utils import get_random_name
|
|
|
14
13
|
@pytest.mark.regression
|
|
15
14
|
@pytest.mark.tescase("EPMCDME-6605")
|
|
16
15
|
@pytest.mark.skipif(
|
|
17
|
-
|
|
16
|
+
EnvironmentResolver.is_azure(),
|
|
17
|
+
reason="Still have an issue with encoding long strings",
|
|
18
18
|
)
|
|
19
19
|
@pytest.mark.parametrize(
|
|
20
20
|
"tool_name, prompt, expected_response",
|
|
File without changes
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import pytest
|
|
2
|
+
|
|
3
|
+
from codemie_test_harness.tests.test_data.report_portal_tools_test_data import (
|
|
4
|
+
rp_test_data,
|
|
5
|
+
)
|
|
6
|
+
from codemie_test_harness.tests.utils.base_utils import get_random_name
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@pytest.mark.workflow
|
|
10
|
+
@pytest.mark.virtual_workflow
|
|
11
|
+
@pytest.mark.report_portal
|
|
12
|
+
@pytest.mark.regression
|
|
13
|
+
@pytest.mark.parametrize(
|
|
14
|
+
"toolkit,tool_name,prompt,expected_response",
|
|
15
|
+
rp_test_data,
|
|
16
|
+
ids=[f"{row[0]}_{row[1]}" for row in rp_test_data],
|
|
17
|
+
)
|
|
18
|
+
def test_workflow_with_virtual_assistant_with_report_portal_tools(
|
|
19
|
+
workflow_with_virtual_assistant,
|
|
20
|
+
workflow_utils,
|
|
21
|
+
report_portal_integration,
|
|
22
|
+
similarity_check,
|
|
23
|
+
toolkit,
|
|
24
|
+
tool_name,
|
|
25
|
+
prompt,
|
|
26
|
+
expected_response,
|
|
27
|
+
):
|
|
28
|
+
assistant_and_state_name = get_random_name()
|
|
29
|
+
|
|
30
|
+
test_workflow = workflow_with_virtual_assistant(
|
|
31
|
+
assistant_and_state_name,
|
|
32
|
+
tool_name,
|
|
33
|
+
integration=report_portal_integration,
|
|
34
|
+
task=prompt,
|
|
35
|
+
)
|
|
36
|
+
response = workflow_utils.execute_workflow(
|
|
37
|
+
test_workflow.id, assistant_and_state_name
|
|
38
|
+
)
|
|
39
|
+
similarity_check.check_similarity(response, expected_response)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: codemie-test-harness
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.160
|
|
4
4
|
Summary: Autotest for CodeMie backend and UI
|
|
5
5
|
Author: Anton Yeromin
|
|
6
6
|
Author-email: anton_yeromin@epam.com
|
|
@@ -13,7 +13,7 @@ Requires-Dist: aws-assume-role-lib (>=2.10.0,<3.0.0)
|
|
|
13
13
|
Requires-Dist: boto3 (>=1.39.8,<2.0.0)
|
|
14
14
|
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
15
15
|
Requires-Dist: codemie-plugins (>=0.1.123,<0.2.0)
|
|
16
|
-
Requires-Dist: codemie-sdk-python (==0.1.
|
|
16
|
+
Requires-Dist: codemie-sdk-python (==0.1.160)
|
|
17
17
|
Requires-Dist: pytest (>=8.4.1,<9.0.0)
|
|
18
18
|
Requires-Dist: pytest-playwright (>=0.7.0,<0.8.0)
|
|
19
19
|
Requires-Dist: pytest-reportportal (>=5.5.2,<6.0.0)
|
|
@@ -13,10 +13,10 @@ codemie_test_harness/tests/__init__.py,sha256=PHIfXfLd6aL9Xv8yhqMp2BBWg_gdoWlfX3
|
|
|
13
13
|
codemie_test_harness/tests/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
codemie_test_harness/tests/assistant/datasource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
codemie_test_harness/tests/assistant/datasource/test_code_datasource.py,sha256=_4GeU8AQNdP4Ltu6grGqt_BWXgaVFiIOCDz83PQBrs8,2731
|
|
16
|
-
codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py,sha256=
|
|
16
|
+
codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py,sha256=U6pcOo-gRxdW66-dman2xS-gh5Lju-j2Wp4ZSVR16DU,3565
|
|
17
17
|
codemie_test_harness/tests/assistant/datasource/test_file_indexing.py,sha256=fpQGlsQQ0_2ZzLrNyVxvcExz02asd-I2VWfzceWZrb8,5746
|
|
18
18
|
codemie_test_harness/tests/assistant/datasource/test_google_datasource.py,sha256=7av94zg-ebwZk-ISpFBZSn3DJUPrFPmkq3erDlQ6eLM,2356
|
|
19
|
-
codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py,sha256=
|
|
19
|
+
codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py,sha256=VgI3bRquoTFym7YtWtQ4a5cTGp2Zlg37tw3Py5gO-Is,3327
|
|
20
20
|
codemie_test_harness/tests/assistant/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool.py,sha256=SCLPs4i2Lw0HWRCoS05VojvMeQDDiVhlZjdDQLAYj0s,7522
|
|
22
22
|
codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_kit.py,sha256=Enisl-n_bKu0epWVPNZsCvdE8RKYlrHXis-ltfSCY9o,7793
|
|
@@ -30,52 +30,55 @@ codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_test_plan_
|
|
|
30
30
|
codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_wiki_tools.py,sha256=PHPbor8RdTos-OSiEjQUX61_dd-_Qi_XCq7qA7z8LLc,3544
|
|
31
31
|
codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_work_item_tools.py,sha256=stHdct0E1ieNS2G7pN_zvW_4dKUrweKxN3c114WQzag,3439
|
|
32
32
|
codemie_test_harness/tests/assistant/tools/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
codemie_test_harness/tests/assistant/tools/cloud/test_cloud_tools.py,sha256=
|
|
33
|
+
codemie_test_harness/tests/assistant/tools/cloud/test_cloud_tools.py,sha256=gNbKc6BWyJmjLzSTJPhXamdXIdmPQ0RkpGnkiX4KAwM,808
|
|
34
34
|
codemie_test_harness/tests/assistant/tools/codebase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
codemie_test_harness/tests/assistant/tools/codebase/test_codebase_tools.py,sha256
|
|
35
|
+
codemie_test_harness/tests/assistant/tools/codebase/test_codebase_tools.py,sha256=-YlWMcdghXJWN_1iW05YvGHsauDEIv7IDGRl62UcZ9o,1627
|
|
36
36
|
codemie_test_harness/tests/assistant/tools/datamanagement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py,sha256=
|
|
37
|
+
codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py,sha256=DmRP2SUubIlFODoQWFzj6behOT057WGdXFN4Wn-Wkl0,2783
|
|
38
38
|
codemie_test_harness/tests/assistant/tools/filemanagement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py,sha256
|
|
39
|
+
codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py,sha256=Oy6CzPxMq8av2PdH5-Sxb5VUNUaKlJWppiKnK9jCQEQ,3912
|
|
40
40
|
codemie_test_harness/tests/assistant/tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
codemie_test_harness/tests/assistant/tools/git/test_assistant_with_git_tools.py,sha256=yVuc3_FEdre2-DYfj9QvHmPELzOq5NM6ADgEvceo6rM,11085
|
|
42
42
|
codemie_test_harness/tests/assistant/tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py,sha256=
|
|
44
|
-
codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py,sha256=
|
|
43
|
+
codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py,sha256=9oCoVb1dSLU3PgiWgRjWOoRMk2esrfE5feHLU8eMqds,2637
|
|
44
|
+
codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py,sha256=6G07SddfjZ0ilnJVSeS3yK-OSge9224I-6BQhbQxvZo,1386
|
|
45
45
|
codemie_test_harness/tests/assistant/tools/notification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
-
codemie_test_harness/tests/assistant/tools/notification/test_assistant_notification_tools.py,sha256=
|
|
46
|
+
codemie_test_harness/tests/assistant/tools/notification/test_assistant_notification_tools.py,sha256=EjiKLM0I7bM8Twl6Q8n69b_R6dhLufa_Htq6RX9ggZQ,2643
|
|
47
47
|
codemie_test_harness/tests/assistant/tools/openapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
-
codemie_test_harness/tests/assistant/tools/openapi/test_assistant_with_open_api_tools.py,sha256=
|
|
48
|
+
codemie_test_harness/tests/assistant/tools/openapi/test_assistant_with_open_api_tools.py,sha256=d7VN1NcR-PrTfaiZTWKBgPWJuuEW8_AHp57bQLMLLRU,1082
|
|
49
49
|
codemie_test_harness/tests/assistant/tools/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
50
|
codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_development_plugin.py,sha256=9oYARpnIgSsdhgI2S0wUHWhgddvqBzDL6CH219tVNHM,2660
|
|
51
51
|
codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py,sha256=WWs-g00i6Ypec9G4wNBNVNQAMZBojb_U7s-uGo4dmlI,1850
|
|
52
52
|
codemie_test_harness/tests/assistant/tools/project_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
codemie_test_harness/tests/assistant/tools/project_management/test_assistant_pm_tools.py,sha256=zZ8RBKbc1ykwpgCVlIsWAfhkU7Vb2Yiz0FghXzB8Coc,5263
|
|
54
|
+
codemie_test_harness/tests/assistant/tools/report_portal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
codemie_test_harness/tests/assistant/tools/report_portal/test_assistant_report_portal_tools.py,sha256=Wj0t2uc7EiAMnbNaGwqovW19RHDWt2_LpqTP18MU3c0,788
|
|
54
56
|
codemie_test_harness/tests/assistant/tools/research/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
57
|
codemie_test_harness/tests/assistant/tools/research/test_assistant_research_tools.py,sha256=HU2GBwVlA32WLkPgMIBx0cmAvYBt4ZXCwEGb1wbBt2o,1666
|
|
56
58
|
codemie_test_harness/tests/assistant/tools/servicenow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
59
|
codemie_test_harness/tests/assistant/tools/servicenow/test_servicenow_tools.py,sha256=Io-E5m8f1sA2EP6xQ1l4oJ4-4e9uKPqXHkmxwH0ApFM,691
|
|
58
60
|
codemie_test_harness/tests/assistant/tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
61
|
codemie_test_harness/tests/assistant/tools/vcs/test_assistant_with_vcs_tools.py,sha256=YjTa1iTU7RpG1y9PpkRkz8RkOqOZXQ8C15X92m2ZRhc,962
|
|
60
|
-
codemie_test_harness/tests/conftest.py,sha256=
|
|
62
|
+
codemie_test_harness/tests/conftest.py,sha256=1QNIET3uz5Mgr8KVb1gSKpASFzoVnvKrWhpjimeQbxw,28878
|
|
61
63
|
codemie_test_harness/tests/conversations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
64
|
codemie_test_harness/tests/conversations/test_conversations_endpoints.py,sha256=rLYMWLcOWuWFXSSfIjYSO4rjh_QZPZwQSfOQ8znhyr4,4163
|
|
63
65
|
codemie_test_harness/tests/e2e/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
66
|
codemie_test_harness/tests/e2e/test_e2e.py,sha256=8dC6_NraakDdfX1JyhjN6igw9rdcy0FWRjCeQZnpCQc,6592
|
|
65
67
|
codemie_test_harness/tests/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
+
codemie_test_harness/tests/enums/environment.py,sha256=R3z7VetKeaJorUyrB5hKmlZVMyjHiAw4R5vREcBfdpU,3051
|
|
66
69
|
codemie_test_harness/tests/enums/integrations.py,sha256=hG_cEKN0N5gtGHyrh3wuCpNAWhPyNOJaKsAw16iNshg,164
|
|
67
|
-
codemie_test_harness/tests/enums/model_types.py,sha256=
|
|
68
|
-
codemie_test_harness/tests/enums/tools.py,sha256=
|
|
70
|
+
codemie_test_harness/tests/enums/model_types.py,sha256=PgC3Zuu5Ml9C18Uz_nLVFRXd3IFJhNZ3TbfAUaMANoE,1231
|
|
71
|
+
codemie_test_harness/tests/enums/tools.py,sha256=7vZeQFo9FYgNt2q7LVpAvzyKDLbqtxapIeZo-g3cE2s,5772
|
|
69
72
|
codemie_test_harness/tests/integrations/__init__.py,sha256=5vnZbxvYQ1Y91O8DJG3QfBHWcdYsMii59cMBzsvHBCg,237
|
|
70
73
|
codemie_test_harness/tests/integrations/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
-
codemie_test_harness/tests/integrations/project/test_default_integrations.py,sha256=
|
|
72
|
-
codemie_test_harness/tests/integrations/project/test_project_integrations.py,sha256=
|
|
74
|
+
codemie_test_harness/tests/integrations/project/test_default_integrations.py,sha256=PI_7D61Wu7InMs72uiBBtLSesuLvHk-Okyu4AfHXzNE,12142
|
|
75
|
+
codemie_test_harness/tests/integrations/project/test_project_integrations.py,sha256=6rMPqk2fxLXrPBeP10Ai5i7SDzCU6GuCmIrl811Xetw,7974
|
|
73
76
|
codemie_test_harness/tests/integrations/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
|
-
codemie_test_harness/tests/integrations/user/test_default_integrations.py,sha256=
|
|
75
|
-
codemie_test_harness/tests/integrations/user/test_user_integrations.py,sha256=
|
|
77
|
+
codemie_test_harness/tests/integrations/user/test_default_integrations.py,sha256=xnDSa0l3Ef9HUXEJmtYaj5ppYIQNZMr8o0aUasqXUhk,12094
|
|
78
|
+
codemie_test_harness/tests/integrations/user/test_user_integrations.py,sha256=lGOoyGyKby1vOvXbz9de-PfhS0eUEX6vS7tg6vixtEE,8120
|
|
76
79
|
codemie_test_harness/tests/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
80
|
codemie_test_harness/tests/llm/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
|
-
codemie_test_harness/tests/llm/assistants/test_llm.py,sha256=
|
|
81
|
+
codemie_test_harness/tests/llm/assistants/test_llm.py,sha256=06oFZikafBC8YrFxgm5RJqIw7or0h8CDWroZ-LvX1Dw,3495
|
|
79
82
|
codemie_test_harness/tests/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
83
|
codemie_test_harness/tests/providers/test_providers_endpoints.py,sha256=SfZVCaYcsk_mG2b9zVu7w2wOY54loQHdmRS8eK5PNo4,8120
|
|
81
84
|
codemie_test_harness/tests/search/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -84,7 +87,7 @@ codemie_test_harness/tests/search/test_search_datasource.py,sha256=dJwrg3GvR2WRT
|
|
|
84
87
|
codemie_test_harness/tests/search/test_search_integration.py,sha256=WyJj2KHS4MSYzD_-ZMHyKvA1eXMaq84GDcy_GsyQcCI,4469
|
|
85
88
|
codemie_test_harness/tests/search/test_search_workflow.py,sha256=X-in00RGL7hwbhth2eb6v5fO3JHeDEhl13DR6Hosi50,2714
|
|
86
89
|
codemie_test_harness/tests/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
-
codemie_test_harness/tests/service/test_assistant_service.py,sha256=
|
|
90
|
+
codemie_test_harness/tests/service/test_assistant_service.py,sha256=NSQUNMv_Dk7xIAHEyj499cYj_SR5-vrG6rNP1VEpdbU,17840
|
|
88
91
|
codemie_test_harness/tests/service/test_datasource_service.py,sha256=_mER2wtvZr4SqCd6rJnRBG6q6-kDtS63xY5ZsDCdNt4,15444
|
|
89
92
|
codemie_test_harness/tests/service/test_integration_service.py,sha256=ODQJhBRELTIy75aFpZt_-axJHbB1wwrX6oz7JGNjtus,7529
|
|
90
93
|
codemie_test_harness/tests/service/test_llm_service.py,sha256=aBJz6Z82JzeWeTuhHTVaRm1Cm7lJMKGRMQ1f6rIalTQ,543
|
|
@@ -96,26 +99,27 @@ codemie_test_harness/tests/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
|
96
99
|
codemie_test_harness/tests/test_data/ado_test_plan_tools_test_data.py,sha256=Al5u4HNfrcoj-b072uEGsqUqjKqwXLGJXKQ0QeJT3PI,5778
|
|
97
100
|
codemie_test_harness/tests/test_data/ado_wiki_tools_test_data.py,sha256=xvgEja5vE0l41sP4fE0stdFLQ0M201FWynOCEcRYufE,3188
|
|
98
101
|
codemie_test_harness/tests/test_data/ado_work_item_tools_test_data.py,sha256=MHou6QGjufyX5t1oexnq2Y4UCjlE17eeyMuIz6Ml62s,5693
|
|
99
|
-
codemie_test_harness/tests/test_data/cloud_tools_test_data.py,sha256=
|
|
100
|
-
codemie_test_harness/tests/test_data/codebase_tools_test_data.py,sha256=
|
|
101
|
-
codemie_test_harness/tests/test_data/data_management_tools_test_data.py,sha256=
|
|
102
|
+
codemie_test_harness/tests/test_data/cloud_tools_test_data.py,sha256=UHzY7B_4P8_CNrWrbXRcQFGfpqPiyLrKbELOrYzUxlE,6186
|
|
103
|
+
codemie_test_harness/tests/test_data/codebase_tools_test_data.py,sha256=TASQ_h23B9cR15pDTNAfkzz8zPPbYYEEcuxSZM01x-U,3304
|
|
104
|
+
codemie_test_harness/tests/test_data/data_management_tools_test_data.py,sha256=e5Cfqza3GUE3hRElm1bxgQO4PaN-jOiNd38OX9299Kc,2793
|
|
102
105
|
codemie_test_harness/tests/test_data/direct_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
106
|
codemie_test_harness/tests/test_data/direct_tools/ado_test_plan_tools_test_data.py,sha256=bDhoeFRlmafSZdRgOTOz122Q5tja7TsqtOxSTypeGVA,13120
|
|
104
107
|
codemie_test_harness/tests/test_data/direct_tools/ado_wiki_tools_test_data.py,sha256=qKNYW0kP32IQrRee8-H1mEWTUa5gb4UP0Me_4owtgeQ,1432
|
|
105
108
|
codemie_test_harness/tests/test_data/direct_tools/ado_work_item_tools_test_data.py,sha256=L-MhuQyRxRbb1WDje1rONjIxc_QxkgzaM5ssMWglcp0,7417
|
|
106
|
-
codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py,sha256=
|
|
107
|
-
codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py,sha256=
|
|
108
|
-
codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py,sha256=
|
|
109
|
+
codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py,sha256=ed1nKfvH2DQbtoQcCUhang_QaJvUanOHC26IdUPItJ4,35805
|
|
110
|
+
codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py,sha256=MJJ-elZibJkM5sAMpr2FGxfaO2QH6_jY0lO3bz4uvmE,6144
|
|
111
|
+
codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py,sha256=Z1mVDWnx4fdhLCulNgIhrwedyKz-rQ6Pdy_oGdYB4oM,1637
|
|
109
112
|
codemie_test_harness/tests/test_data/direct_tools/direct_tools_test_data.py,sha256=y9awl1IA6EXGXyz05QzcNdt5z7Rk9J5LzIbfi4CFE3s,3233
|
|
110
|
-
codemie_test_harness/tests/test_data/direct_tools/file_management_tools_test_data.py,sha256=
|
|
113
|
+
codemie_test_harness/tests/test_data/direct_tools/file_management_tools_test_data.py,sha256=qbc53ewxJQHf9tf3uF9aKdVBVLRc_CDCXAXwWhtS4Qg,1455
|
|
111
114
|
codemie_test_harness/tests/test_data/direct_tools/keycloak_tool_test_data.py,sha256=6lU1YC6DSV6e_3VNQEVvtA4o3_lSFgOQik4T0u-TF1g,2979
|
|
112
|
-
codemie_test_harness/tests/test_data/direct_tools/notification_tools_test_data.py,sha256=
|
|
115
|
+
codemie_test_harness/tests/test_data/direct_tools/notification_tools_test_data.py,sha256=Xo76Bd4R9cmfhEHUaUGh2O1qPzeoLG1El0m7VLRwP5M,1880
|
|
113
116
|
codemie_test_harness/tests/test_data/direct_tools/open_api_tools_test_data.py,sha256=UwXVrwD3MnOIS2wwikNDk1EZNYR14p_IjhOOUwjYHOI,497
|
|
114
|
-
codemie_test_harness/tests/test_data/direct_tools/project_management_tools_test_data.py,sha256=
|
|
115
|
-
codemie_test_harness/tests/test_data/direct_tools/
|
|
117
|
+
codemie_test_harness/tests/test_data/direct_tools/project_management_tools_test_data.py,sha256=3s2biYoy5Nv8nwaWYbp1AoMpZ0lrUvlqHuFP9BlOHwg,21084
|
|
118
|
+
codemie_test_harness/tests/test_data/direct_tools/report_portal_tools_test_data.py,sha256=TivId7d_WhPDqaQWsqcx8w1dKJREuDJWZBwtRtHhLkc,57260
|
|
119
|
+
codemie_test_harness/tests/test_data/direct_tools/research_tools_test_data.py,sha256=iDXoPMZBmLJT_IPTWmPbxv3SW7xLK1Umdrmqawr9owk,15284
|
|
116
120
|
codemie_test_harness/tests/test_data/direct_tools/servicenow_tools_test_data.py,sha256=d-F3d6AUniYQ5qqnYtDVu0ME6_Xub9XjRLf7Ssx-J4o,5464
|
|
117
|
-
codemie_test_harness/tests/test_data/direct_tools/vcs_tools_test_data.py,sha256=
|
|
118
|
-
codemie_test_harness/tests/test_data/file_management_tools_test_data.py,sha256=
|
|
121
|
+
codemie_test_harness/tests/test_data/direct_tools/vcs_tools_test_data.py,sha256=qTIhBBKRvI--vuHm8-qOSOqXLkS8IWgn7fpJcxp2QlQ,7439
|
|
122
|
+
codemie_test_harness/tests/test_data/file_management_tools_test_data.py,sha256=V0_zhv9UBPNiTwzRkn8mGH-dRqSAEPiTR2hWG0Sbw8w,4050
|
|
119
123
|
codemie_test_harness/tests/test_data/file_test_data.py,sha256=lhMJBbejENthkDNcg5vvUB-nWFU4zidnPaplQJBU1CM,11712
|
|
120
124
|
codemie_test_harness/tests/test_data/files/large-files/large_file.txt,sha256=uLjvYxR0RpLPrXstAfhvfWhMwiWrhsaCl_WV-Lh6GKA,110100480
|
|
121
125
|
codemie_test_harness/tests/test_data/files/provider_payload.json,sha256=TkRb0GucodIXg3TgjxRD_mJOJRsQw_oFKv3pyTSYlZ0,17371
|
|
@@ -136,10 +140,10 @@ codemie_test_harness/tests/test_data/files/test.xml,sha256=QVn0coF-83PYoGyOZNVEZ
|
|
|
136
140
|
codemie_test_harness/tests/test_data/files/test.yaml,sha256=3NDQyzwkRM5d6eCYMScNMbCqZ0JnjU1T8WcRemuqsc0,392
|
|
137
141
|
codemie_test_harness/tests/test_data/git_tools_test_data.py,sha256=7U05vLqkh5uJ0l_KJeHis549id1Of99K0jCsWOb0nXM,8485
|
|
138
142
|
codemie_test_harness/tests/test_data/google_datasource_test_data.py,sha256=fhMJVTU0udINKtBQ750c_c279NzibGiZumnIaCPLtBo,511
|
|
139
|
-
codemie_test_harness/tests/test_data/index_test_data.py,sha256=
|
|
140
|
-
codemie_test_harness/tests/test_data/integrations_test_data.py,sha256=
|
|
143
|
+
codemie_test_harness/tests/test_data/index_test_data.py,sha256=VZJC_Fmko32EHaybUwCy0mWMiwAeUAAmhRa0Xt4oTHQ,1115
|
|
144
|
+
codemie_test_harness/tests/test_data/integrations_test_data.py,sha256=ObmLFVurBE6sXZTQ0hdCr0Y0TAWZxrtBwKkOJOHrC_k,12901
|
|
141
145
|
codemie_test_harness/tests/test_data/keycloak_tool_test_data.py,sha256=uF8YqHGgLpQVxKdpKXLe-7F-ipEGQiHHh28nZvvVGM8,1244
|
|
142
|
-
codemie_test_harness/tests/test_data/llm_test_data.py,sha256=
|
|
146
|
+
codemie_test_harness/tests/test_data/llm_test_data.py,sha256=JcPR9ROSrqMiH7BgTFjaymNZq55lvde6Y1DHa5WcTTY,2424
|
|
143
147
|
codemie_test_harness/tests/test_data/mcp_server_test_data.py,sha256=m6PImS_J2gPNY5ijf9MG_eOX_LxJjTZ23AXQDgaK_Oc,7151
|
|
144
148
|
codemie_test_harness/tests/test_data/notification_tools_test_data.py,sha256=Rqo-5u7PULDJddidjqcJfnsus6-JbDABk9147JX0pqs,855
|
|
145
149
|
codemie_test_harness/tests/test_data/open_api_tools_test_data.py,sha256=XhVzelRXgLXHF2iIvhI70SP6qHQjT7QW70S06dF6XJI,2480
|
|
@@ -147,10 +151,11 @@ codemie_test_harness/tests/test_data/openapi.json,sha256=X4uqtfjpTUuMifefQRf8mHI
|
|
|
147
151
|
codemie_test_harness/tests/test_data/output_schema_test_data.py,sha256=4l7AvXbMl9hIvoFxu1LPPSGz9hb5Uz2_is4zTm77ARY,261
|
|
148
152
|
codemie_test_harness/tests/test_data/plugin_tools_test_data.py,sha256=8sb80WiFdi2WWBWw5OWCR56HW6K1y062bWFiLOKeSU0,2430
|
|
149
153
|
codemie_test_harness/tests/test_data/pm_tools_test_data.py,sha256=ctPwLSJYy7xPg4B-uwAAhRwIogdxTgBn-PPY2rN0llc,3248
|
|
150
|
-
codemie_test_harness/tests/test_data/project_management_test_data.py,sha256=
|
|
154
|
+
codemie_test_harness/tests/test_data/project_management_test_data.py,sha256=Sd5MEO0hnUeyF-WIIGW4qEAHR5hvhJcs0DE1ytqdveM,1692
|
|
155
|
+
codemie_test_harness/tests/test_data/report_portal_tools_test_data.py,sha256=7bS7ByKaX9Lz4hjjz10c0N-lxUx9tWZaA1NfeglLe68,20864
|
|
151
156
|
codemie_test_harness/tests/test_data/research_tools_test_data.py,sha256=FtOhWp7PbRdw36IUIa46OBbE2wy8yKZkpI6uwCfSoXQ,4745
|
|
152
157
|
codemie_test_harness/tests/test_data/servicenow_tools_test_data.py,sha256=PKw9zEYSNcQM1KApCSjsBiA_3Py0bNQI7clqw8cmT-s,1983
|
|
153
|
-
codemie_test_harness/tests/test_data/vcs_tools_test_data.py,sha256=
|
|
158
|
+
codemie_test_harness/tests/test_data/vcs_tools_test_data.py,sha256=xL7BDF4f20LvMC-9xSMU3UzuGtvAgAudp48TVXnWhR8,2697
|
|
154
159
|
codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_id.yaml,sha256=_cioQNq3icemob9u0i-hXkTy2nflzyP0Ce8FWiPG14M,265
|
|
155
160
|
codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_in_state.yaml,sha256=t_W95zD5bfdGf3F6p64-2qBHz7SkL_7mFT675uieWZg,209
|
|
156
161
|
codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_data_source.yaml,sha256=Vwx3HyrQkL8sWNtfwL6d0qiJhru6X3ojKBASAzJeY9w,252
|
|
@@ -215,12 +220,13 @@ codemie_test_harness/tests/ui/test_workflow_templates.py,sha256=pVuF98d3eEfinb5j
|
|
|
215
220
|
codemie_test_harness/tests/ui/test_workflows.py,sha256=a2VY8BAsw3Po7e10r4g7S798GhpA4KYh2ZjnYEhU1PY,3664
|
|
216
221
|
codemie_test_harness/tests/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
217
222
|
codemie_test_harness/tests/utils/assistant_utils.py,sha256=jy3dFF4ZiT22Wippl1a5jIEAAyJ71P0ss8AIHPefz6k,6511
|
|
218
|
-
codemie_test_harness/tests/utils/aws_parameters_store.py,sha256=
|
|
223
|
+
codemie_test_harness/tests/utils/aws_parameters_store.py,sha256=AUAJkK9XBx4IPfV8Gr8fn00yERrQFMjm7-2CXldOKU0,22734
|
|
219
224
|
codemie_test_harness/tests/utils/base_utils.py,sha256=tfishCUxO3iEuasWOifoF9_fXspm4uIHS26Ryqu-NxA,5998
|
|
220
225
|
codemie_test_harness/tests/utils/client_factory.py,sha256=Yyg2iXe7g7fIfIUbOH8z_8qgVo_lB-nYLOfCV5ONXFw,641
|
|
221
|
-
codemie_test_harness/tests/utils/constants.py,sha256=
|
|
226
|
+
codemie_test_harness/tests/utils/constants.py,sha256=ZNyM5wERHFN-c8TCvBcxCdFf0As9TOpr22YvLCMHArE,1116
|
|
222
227
|
codemie_test_harness/tests/utils/conversation_utils.py,sha256=SWj6TBWOQoX5Yh6Wk63yHQFveRXgK1mpLb3PUKAa57A,648
|
|
223
228
|
codemie_test_harness/tests/utils/datasource_utils.py,sha256=-_HZfW_UufSUVkSUCVq4jMlq9MCcKtMhzD6iBtadzmk,12502
|
|
229
|
+
codemie_test_harness/tests/utils/env_resolver.py,sha256=25776Aq9oIDcDzGtfFs07lj7eldeFgmsocxeS3RUclE,4280
|
|
224
230
|
codemie_test_harness/tests/utils/env_utils.py,sha256=9tyVgxKfYqdtSoo9dRTScOZWjAUm82_65JjaKggcwCg,3999
|
|
225
231
|
codemie_test_harness/tests/utils/file_utils.py,sha256=hY-kwnyzvtd1BQif8r5NhvRTGfpKLmQKyRsq1Tuflhg,585
|
|
226
232
|
codemie_test_harness/tests/utils/gitbud_utils.py,sha256=UJ3RbhPSjHQSdos6S6zTR9iZULrBDJXoXq9cbjFH7bo,7829
|
|
@@ -246,30 +252,32 @@ codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assis
|
|
|
246
252
|
codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_wiki_tools.py,sha256=mebEjEBQng5V6PumYoWFIQJ4x00TiTOjN_v1K4-aU2U,3606
|
|
247
253
|
codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_work_item_tools.py,sha256=mCF8oHIFz0kgrQfWBF9hFNJFqIyrI5m-KAacMmBF22s,3474
|
|
248
254
|
codemie_test_harness/tests/workflow/assistant_tools/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
|
-
codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py,sha256=
|
|
255
|
+
codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py,sha256=05-cMimfhhiNcyMF7Z6TnlbSSDvzZQ3PhCFdmF_8Iks,976
|
|
250
256
|
codemie_test_harness/tests/workflow/assistant_tools/codebase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
|
-
codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py,sha256=
|
|
257
|
+
codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py,sha256=xBxJE-ObX_AfEzGgEXGfRE57fYngiUXyxzGSW3fbQ1M,2037
|
|
252
258
|
codemie_test_harness/tests/workflow/assistant_tools/data_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
253
|
-
codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py,sha256=
|
|
259
|
+
codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py,sha256=scLwZBg8FDJuWzMK67spiWYfVGAQGFaGQGV2DxMTKag,2977
|
|
254
260
|
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
261
|
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool.py,sha256=uPeV2g6XV2jhhmAJ8VDYFQix4tQv6pQneqmYSNy2xQA,8738
|
|
256
262
|
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py,sha256=8WqRPzkx5-0J8GJeQH4SDReOvN68AWO6H6SgoNX7zZM,9004
|
|
257
263
|
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=lniPCfQtfhnUGvwYOz4Hv6Ao42fBpKk-R9LlPtrjKC4,11404
|
|
258
264
|
codemie_test_harness/tests/workflow/assistant_tools/file_management/__init__.py,sha256=gdro-sbQYZMXgou3dzJw2sqqdS8o7_N41ej5qCA-3v0,53
|
|
259
|
-
codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py,sha256=
|
|
265
|
+
codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py,sha256=8UyQhuusXD4PWPzV-3By6WdP8U12opbYXWwYga0gRc0,5613
|
|
260
266
|
codemie_test_harness/tests/workflow/assistant_tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
261
267
|
codemie_test_harness/tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py,sha256=YzyXjaOXKYO7dBUl5zUhGWs0VS7wfSlWdVf0WsN6kio,12446
|
|
262
268
|
codemie_test_harness/tests/workflow/assistant_tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
|
-
codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py,sha256=
|
|
269
|
+
codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py,sha256=bwlnyh6HCENgLsh0qux95EuI6PQSNRdnRw6J4lum3Tc,2810
|
|
264
270
|
codemie_test_harness/tests/workflow/assistant_tools/notification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
265
|
-
codemie_test_harness/tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py,sha256=
|
|
271
|
+
codemie_test_harness/tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py,sha256=AxvV7ZWOefL6AEJQV55Az_tQJ9U8N9b9vcRILO0XJAw,2668
|
|
266
272
|
codemie_test_harness/tests/workflow/assistant_tools/open_api/__init__.py,sha256=s6X-VOfd5UR7yxRL90VvL21YdYs1rPd6wkGFSfOI3Qs,46
|
|
267
|
-
codemie_test_harness/tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py,sha256=
|
|
273
|
+
codemie_test_harness/tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py,sha256=mDmsU3CvXqSUjq_ibGA1piFl0NwicPFcptG8PuNVrJM,1207
|
|
268
274
|
codemie_test_harness/tests/workflow/assistant_tools/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
269
275
|
codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_development_plugin.py,sha256=wHVbwhU5LJaoWsZnoC0zg27hOPExPBuZufvcyuDj99s,3177
|
|
270
276
|
codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_plugin_and_mcp_servers.py,sha256=yIK5XvWsB7Cj25bXUyHJQNJ24jZAM2iEjSGz4Grpm1M,2294
|
|
271
277
|
codemie_test_harness/tests/workflow/assistant_tools/project_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
272
278
|
codemie_test_harness/tests/workflow/assistant_tools/project_management/test_workflow_with_assistant_pm_tools.py,sha256=pSFamTk3QESdfyO7xjNB2aAi9nn13UvwJod8I1f1xew,1324
|
|
279
|
+
codemie_test_harness/tests/workflow/assistant_tools/report_portal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
280
|
+
codemie_test_harness/tests/workflow/assistant_tools/report_portal/test_workflow_with_assistant_with_report_portal_tools.py,sha256=LhPLp4Yh5I5K_vqijoyiax3uAkvtkcd5VgkmGjwtbVM,981
|
|
273
281
|
codemie_test_harness/tests/workflow/assistant_tools/research/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
282
|
codemie_test_harness/tests/workflow/assistant_tools/research/test_workflow_with_assistant_research_tools.py,sha256=DJS0A759if0oi_0oA_cyFzXiMdXk7V7B_0Sdc_Rr9bA,2066
|
|
275
283
|
codemie_test_harness/tests/workflow/assistant_tools/servicenow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -288,12 +296,13 @@ codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_
|
|
|
288
296
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py,sha256=Owlau_ITGNxtgETP2QtHs7lNWpms-F-hxQWgoKZzoic,2991
|
|
289
297
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py,sha256=aJQrcU3i1uI50fR4njK2GxYifG8K6Sg7VGpXRjIbJPc,3725
|
|
290
298
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_codebase_tools.py,sha256=gQIZJp88EWCHZUSBCrhXgdf4egiOmtUvNjLtZJ4hWZI,3950
|
|
291
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_sql.py,sha256
|
|
299
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_sql.py,sha256=-WXWet_uMrHhH8N46UXqsBaQT_tHzRFQiYjMOM5LWC4,4171
|
|
292
300
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py,sha256=VnkTiPX2GiIoebMbproLRc8zwxpdkuALicUWr6EhEH4,2901
|
|
293
301
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_notification_tools.py,sha256=qfrJxtySw0l_eLTATC6mjHv2ir14UVbY98nt2H0sI1w,3004
|
|
294
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py,sha256=
|
|
302
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py,sha256=MncafTXnkLgFb5fPYtTGblA4VkSz9IpACZ4l74PQtZE,3229
|
|
295
303
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_plugin_tools.py,sha256=4_zZ_bla4W01oSGBr13FwRNoRqICq-ug0vFLS368UeU,4134
|
|
296
304
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_project_management_tools.py,sha256=LI-LBLx5vRomKctc3IDyKghzTditWQCRuRF2-qbEfyY,3426
|
|
305
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_report_portal_tools.py,sha256=RRlVdUgq6M7aF7Ce2o7iPqhWpqUbZMI7IDrddjnJ1-w,3141
|
|
297
306
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_research_tools.py,sha256=s0rV9EPgXhaJ8T7f4vKyLsnynGHWzFLCQJaXKSZ0p-E,2579
|
|
298
307
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_servicenow_tools.py,sha256=FBc5LzzipL7TU3li-tT7NdE4CpJRv1D895Txf6PzAZE,2398
|
|
299
308
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_vcs_tools.py,sha256=0XAvKVxfaeC3w3tZBwIOOw__d0ssm3MVFQtJCbDIzi4,3069
|
|
@@ -306,37 +315,39 @@ codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_wi
|
|
|
306
315
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_wiki_tools.py,sha256=jhck8j7tJMl1Ui2APOuJ1RmYhl9jxoRCifV1TenQ7I0,4286
|
|
307
316
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_work_item_tools.py,sha256=I3nx4Q-6b7uS2PxmzcrC4MHDAABBtCu5yMRbbS2CNyM,3906
|
|
308
317
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py,sha256=
|
|
318
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py,sha256=k3aIKn-AC1OUVRpqLOYpOsorjAyqrn1qUljIyJTtwC0,1211
|
|
310
319
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/__init__.py,sha256=kCzJLR44IfB9ZncaLNOtyUqlzvyOG3BXclsDFS5MaQg,46
|
|
311
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py,sha256=
|
|
320
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py,sha256=oHJmMHRYo85bAJLhxEwdBMWM6i0Rdbh2gQJtFRj7zK4,3161
|
|
312
321
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/__init__.py,sha256=Vk3MBJAVfJA8uxRJdY3aH_5lCWkTBcE_l9xw5FzUt7I,53
|
|
313
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py,sha256=
|
|
322
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py,sha256=YXR2eNquLOkB0lOXdrQ7QS-YMigOrjltaUmRsL6c6LM,3251
|
|
314
323
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
324
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool.py,sha256=ZIYQJdtyZxKmMHyIN5nW3MCG3vBxVWp8krtacWQ09v8,8641
|
|
316
325
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py,sha256=CRpvBaq7ghzAAvZMaFf9WvGgnv3DANZqQMCbppsYlwg,8927
|
|
317
326
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=iZtRfhRX-qSxQOUrZMznMTzBsHCN5Zrk8glWmpLjNcY,11386
|
|
318
327
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/__init__.py,sha256=gdro-sbQYZMXgou3dzJw2sqqdS8o7_N41ej5qCA-3v0,53
|
|
319
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py,sha256=
|
|
328
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py,sha256=H7v4StKR_8AN-NqLF5mLVhO9UCk82JYLC3IJECesuuU,6688
|
|
320
329
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
321
330
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py,sha256=Rp3oBGad0RpIaIbjuVAtCoeuVa9RripKElCIkcbhMcs,12774
|
|
322
331
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
323
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py,sha256=
|
|
332
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py,sha256=kxEZL8QV4Zf3-n70x0R-e2uv3tQ8bPOPv1cgXfMGeAQ,3110
|
|
324
333
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/__init__.py,sha256=hUDnGT_v3FoV6qsGpdACg_DfBFlfuubj8FjZLiuMrt0,50
|
|
325
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py,sha256=
|
|
334
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py,sha256=ozL3dk78PwntPV1k56I5O3daBtrPCfzbbFAOOprAECQ,2776
|
|
326
335
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/__init__.py,sha256=s6X-VOfd5UR7yxRL90VvL21YdYs1rPd6wkGFSfOI3Qs,46
|
|
327
|
-
codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py,sha256=
|
|
336
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py,sha256=xERs6KIGBvRhs44aFrNprrxMsozipd0YorfbpQKYwh0,1283
|
|
328
337
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
338
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_development_plugin.py,sha256=yF6fw0xOKsvrNKdVpDBkB5zAVAOkGVd0u6r2EKtPoEs,3324
|
|
330
339
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_plugin_and_mcp_servers.py,sha256=d_TRj77JZbofSCvACV54Apuuw1LubVrnUb4rCXcuaFA,2424
|
|
331
340
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/__init__.py,sha256=64jHPoFuGaohGEe-2iYPlEvB8pOG_ZANKzZRubVC4qQ,56
|
|
332
341
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/test_workflow_with_project_management_tools.py,sha256=RVt1Dp40gzQtx9ylLQYIogwfBjHNLooaDunKw86JSKA,1326
|
|
342
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
343
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/test_workflow_with_report_portal_tool.py,sha256=PprjG-TNOQT95OW5D5JMoqAXOrxYspWr9WjsKDVaNMw,1090
|
|
333
344
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/research/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
334
345
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/research/test_workflow_with_research_tools.py,sha256=6FlGMEBMoWXm8ndFwIqIu7-K5o_eC7KrdAz8yqBSXqc,2199
|
|
335
346
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
336
347
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=vq6tucNBxiNIQSmIj_pYiiPm0lipU9X3kzeCd6xEbRM,966
|
|
337
348
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
349
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py,sha256=uD2qs361j6Egp4UumfoQ4gC24-NioXfiW0IF53N9hVA,1175
|
|
339
|
-
codemie_test_harness-0.1.
|
|
340
|
-
codemie_test_harness-0.1.
|
|
341
|
-
codemie_test_harness-0.1.
|
|
342
|
-
codemie_test_harness-0.1.
|
|
350
|
+
codemie_test_harness-0.1.160.dist-info/METADATA,sha256=aWQcHiEkFpoo7Fd1zEJOjpSIS-enVOPlQmrG49ZRj7c,8998
|
|
351
|
+
codemie_test_harness-0.1.160.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
352
|
+
codemie_test_harness-0.1.160.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
|
|
353
|
+
codemie_test_harness-0.1.160.dist-info/RECORD,,
|
|
File without changes
|
{codemie_test_harness-0.1.158.dist-info → codemie_test_harness-0.1.160.dist-info}/entry_points.txt
RENAMED
|
File without changes
|