codemie-test-harness 0.1.133__py3-none-any.whl → 0.1.135__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 +40 -10
- codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py +35 -11
- codemie_test_harness/tests/enums/integrations.py +1 -0
- codemie_test_harness/tests/test_data/data_management_tools_test_data.py +12 -0
- codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py +27 -0
- codemie_test_harness/tests/test_data/pm_tools_test_data.py +13 -3
- codemie_test_harness/tests/utils/aws_parameters_store.py +12 -0
- codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py +3 -0
- {codemie_test_harness-0.1.133.dist-info → codemie_test_harness-0.1.135.dist-info}/METADATA +2 -2
- {codemie_test_harness-0.1.133.dist-info → codemie_test_harness-0.1.135.dist-info}/RECORD +12 -12
- {codemie_test_harness-0.1.133.dist-info → codemie_test_harness-0.1.135.dist-info}/WHEEL +0 -0
- {codemie_test_harness-0.1.133.dist-info → codemie_test_harness-0.1.135.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""Tests for Confluence datasource operations - Final version."""
|
|
2
2
|
|
|
3
3
|
import os
|
|
4
|
+
|
|
4
5
|
import pytest
|
|
5
6
|
from hamcrest import assert_that, equal_to
|
|
6
7
|
from requests import HTTPError
|
|
@@ -8,31 +9,60 @@ from requests import HTTPError
|
|
|
8
9
|
from codemie_test_harness.tests.test_data.pm_tools_test_data import (
|
|
9
10
|
CONFLUENCE_TOOL_PROMPT,
|
|
10
11
|
RESPONSE_FOR_CONFLUENCE_TOOL,
|
|
12
|
+
CONFLUENCE_CLOUD_TOOL_PROMPT,
|
|
13
|
+
RESPONSE_FOR_CONFLUENCE_CLOUD_TOOL,
|
|
11
14
|
)
|
|
15
|
+
from codemie_test_harness.tests.utils.aws_parameters_store import CredentialsUtil
|
|
12
16
|
from codemie_test_harness.tests.utils.base_utils import get_random_name, assert_response
|
|
13
17
|
|
|
14
18
|
|
|
19
|
+
@pytest.fixture(scope="function")
|
|
20
|
+
def confluence_cloud_datasource(datasource_utils, confluence_cloud_integration):
|
|
21
|
+
datasource = datasource_utils.create_confluence_datasource(
|
|
22
|
+
setting_id=confluence_cloud_integration.id,
|
|
23
|
+
cql=CredentialsUtil.confluence_cloud_jql(),
|
|
24
|
+
)
|
|
25
|
+
yield datasource
|
|
26
|
+
if datasource:
|
|
27
|
+
datasource_utils.delete_datasource(datasource)
|
|
28
|
+
|
|
29
|
+
|
|
15
30
|
@pytest.mark.regression
|
|
16
|
-
|
|
31
|
+
@pytest.mark.parametrize(
|
|
32
|
+
"datasource_fixture, prompt, expected_response",
|
|
33
|
+
[
|
|
34
|
+
("confluence_datasource", CONFLUENCE_TOOL_PROMPT, RESPONSE_FOR_CONFLUENCE_TOOL),
|
|
35
|
+
(
|
|
36
|
+
"confluence_cloud_datasource",
|
|
37
|
+
CONFLUENCE_CLOUD_TOOL_PROMPT,
|
|
38
|
+
RESPONSE_FOR_CONFLUENCE_CLOUD_TOOL,
|
|
39
|
+
),
|
|
40
|
+
],
|
|
41
|
+
ids=["Confluence", "Confluence Cloud"],
|
|
42
|
+
)
|
|
43
|
+
def test_create_datasource_with_confluence_and_confluence_cloud_integration(
|
|
44
|
+
request,
|
|
17
45
|
assistant,
|
|
18
46
|
assistant_utils,
|
|
19
47
|
datasource_utils,
|
|
20
|
-
confluence_datasource,
|
|
21
48
|
kb_context,
|
|
22
|
-
default_llm,
|
|
23
49
|
similarity_check,
|
|
50
|
+
datasource_fixture,
|
|
51
|
+
prompt,
|
|
52
|
+
expected_response,
|
|
24
53
|
):
|
|
25
|
-
|
|
54
|
+
datasource = request.getfixturevalue(datasource_fixture)
|
|
55
|
+
assistant = assistant(context=kb_context(datasource))
|
|
26
56
|
|
|
27
|
-
response = assistant_utils.ask_assistant(assistant,
|
|
28
|
-
similarity_check.check_similarity(response,
|
|
57
|
+
response = assistant_utils.ask_assistant(assistant, prompt)
|
|
58
|
+
similarity_check.check_similarity(response, expected_response)
|
|
29
59
|
|
|
30
60
|
datasource_utils.update_confluence_datasource(
|
|
31
|
-
|
|
61
|
+
datasource.id, full_reindex=True, skip_reindex=False
|
|
32
62
|
)
|
|
33
63
|
|
|
34
|
-
response = assistant_utils.ask_assistant(assistant,
|
|
35
|
-
similarity_check.check_similarity(response,
|
|
64
|
+
response = assistant_utils.ask_assistant(assistant, prompt)
|
|
65
|
+
similarity_check.check_similarity(response, expected_response)
|
|
36
66
|
|
|
37
67
|
|
|
38
68
|
@pytest.mark.regression
|
|
@@ -51,7 +81,7 @@ def test_edit_description_for_confluence_data_source(
|
|
|
51
81
|
|
|
52
82
|
@pytest.mark.regression
|
|
53
83
|
def test_create_confluence_datasource_with_existing_name(
|
|
54
|
-
|
|
84
|
+
datasource_utils, confluence_datasource
|
|
55
85
|
):
|
|
56
86
|
datasource = datasource_utils.get_datasource(confluence_datasource.id)
|
|
57
87
|
|
|
@@ -8,36 +8,60 @@ from requests import HTTPError
|
|
|
8
8
|
from codemie_test_harness.tests.test_data.pm_tools_test_data import (
|
|
9
9
|
JIRA_TOOL_PROMPT,
|
|
10
10
|
RESPONSE_FOR_JIRA_TOOL,
|
|
11
|
+
JIRA_CLOUD_TOOL_PROMPT,
|
|
12
|
+
RESPONSE_FOR_JIRA_CLOUD_TOOL,
|
|
11
13
|
)
|
|
14
|
+
from codemie_test_harness.tests.utils.aws_parameters_store import CredentialsUtil
|
|
12
15
|
from codemie_test_harness.tests.utils.base_utils import get_random_name, assert_response
|
|
13
16
|
|
|
14
17
|
|
|
18
|
+
@pytest.fixture(scope="function")
|
|
19
|
+
def jira_cloud_datasource(datasource_utils, jira_cloud_integration):
|
|
20
|
+
datasource = datasource_utils.create_jira_datasource(
|
|
21
|
+
setting_id=jira_cloud_integration.id, jql=CredentialsUtil.jira_cloud_jql()
|
|
22
|
+
)
|
|
23
|
+
yield datasource
|
|
24
|
+
if datasource:
|
|
25
|
+
datasource_utils.delete_datasource(datasource)
|
|
26
|
+
|
|
27
|
+
|
|
15
28
|
@pytest.mark.regression
|
|
16
|
-
|
|
29
|
+
@pytest.mark.parametrize(
|
|
30
|
+
"datasource_fixture, prompt, expected_response",
|
|
31
|
+
[
|
|
32
|
+
("jira_datasource", JIRA_TOOL_PROMPT, RESPONSE_FOR_JIRA_TOOL),
|
|
33
|
+
("jira_cloud_datasource", JIRA_CLOUD_TOOL_PROMPT, RESPONSE_FOR_JIRA_CLOUD_TOOL),
|
|
34
|
+
],
|
|
35
|
+
ids=["Jira", "Jira Cloud"],
|
|
36
|
+
)
|
|
37
|
+
def test_create_datasource_with_jira_and_jira_cloud_integration(
|
|
38
|
+
request,
|
|
17
39
|
assistant,
|
|
18
40
|
assistant_utils,
|
|
19
41
|
datasource_utils,
|
|
20
|
-
jira_datasource,
|
|
21
42
|
kb_context,
|
|
22
|
-
default_llm,
|
|
23
43
|
similarity_check,
|
|
44
|
+
datasource_fixture,
|
|
45
|
+
prompt,
|
|
46
|
+
expected_response,
|
|
24
47
|
):
|
|
25
|
-
|
|
48
|
+
datasource = request.getfixturevalue(datasource_fixture)
|
|
49
|
+
assistant = assistant(context=kb_context(datasource))
|
|
26
50
|
|
|
27
|
-
response = assistant_utils.ask_assistant(assistant,
|
|
28
|
-
similarity_check.check_similarity(response,
|
|
51
|
+
response = assistant_utils.ask_assistant(assistant, prompt)
|
|
52
|
+
similarity_check.check_similarity(response, response)
|
|
29
53
|
|
|
30
54
|
datasource_utils.update_jira_datasource(
|
|
31
|
-
|
|
55
|
+
datasource.id, full_reindex=True, skip_reindex=False
|
|
32
56
|
)
|
|
33
57
|
|
|
34
|
-
response = assistant_utils.ask_assistant(assistant,
|
|
35
|
-
similarity_check.check_similarity(response,
|
|
58
|
+
response = assistant_utils.ask_assistant(assistant, prompt)
|
|
59
|
+
similarity_check.check_similarity(response, response)
|
|
36
60
|
|
|
37
61
|
|
|
38
62
|
@pytest.mark.regression
|
|
39
63
|
def test_edit_description_for_jira_data_source(
|
|
40
|
-
client,
|
|
64
|
+
client, datasource_utils, jira_datasource
|
|
41
65
|
):
|
|
42
66
|
updated_description = get_random_name()
|
|
43
67
|
|
|
@@ -50,7 +74,7 @@ def test_edit_description_for_jira_data_source(
|
|
|
50
74
|
|
|
51
75
|
|
|
52
76
|
@pytest.mark.regression
|
|
53
|
-
def test_create_jira_datasource_with_existing_name(
|
|
77
|
+
def test_create_jira_datasource_with_existing_name(datasource_utils, jira_datasource):
|
|
54
78
|
datasource = datasource_utils.get_datasource(jira_datasource.id)
|
|
55
79
|
|
|
56
80
|
try:
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
import os
|
|
2
|
+
|
|
3
|
+
import pytest
|
|
4
|
+
|
|
1
5
|
from codemie_test_harness.tests.enums.integrations import DataBaseDialect
|
|
2
6
|
|
|
3
7
|
ELASTIC_TOOL_TASK = """
|
|
@@ -81,7 +85,15 @@ RESPONSE_FOR_SQL = """
|
|
|
81
85
|
| Sarah | Connor | sarah.connor@email.com | Security |
|
|
82
86
|
"""
|
|
83
87
|
|
|
88
|
+
# Define test data for SQL tools based on environment
|
|
84
89
|
sql_tools_test_data = [
|
|
85
90
|
DataBaseDialect.MY_SQL,
|
|
86
91
|
DataBaseDialect.POSTGRES,
|
|
92
|
+
pytest.param(
|
|
93
|
+
DataBaseDialect.MS_SQL,
|
|
94
|
+
marks=pytest.mark.skipif(
|
|
95
|
+
os.getenv("ENV") not in ("aws", "azure", "gcp"),
|
|
96
|
+
reason="MS SQL is only available in staging environments",
|
|
97
|
+
),
|
|
98
|
+
),
|
|
87
99
|
]
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
import os
|
|
2
|
+
|
|
3
|
+
import pytest
|
|
4
|
+
|
|
1
5
|
from codemie_test_harness.tests.enums.tools import DataManagementTool, Toolkit
|
|
2
6
|
from codemie_test_harness.tests.enums.integrations import DataBaseDialect
|
|
3
7
|
|
|
@@ -18,4 +22,27 @@ sql_tools_test_data = [
|
|
|
18
22
|
},
|
|
19
23
|
[{"table_name": "users"}, {"table_name": "products"}],
|
|
20
24
|
),
|
|
25
|
+
pytest.param(
|
|
26
|
+
Toolkit.DATA_MANAGEMENT,
|
|
27
|
+
DataManagementTool.SQL,
|
|
28
|
+
DataBaseDialect.MS_SQL,
|
|
29
|
+
{
|
|
30
|
+
"sql_query": """SELECT table_name
|
|
31
|
+
FROM
|
|
32
|
+
information_schema.tables
|
|
33
|
+
WHERE
|
|
34
|
+
table_type = 'BASE TABLE'
|
|
35
|
+
AND
|
|
36
|
+
table_catalog = 'autotests'
|
|
37
|
+
AND
|
|
38
|
+
table_schema = 'dbo';
|
|
39
|
+
"""
|
|
40
|
+
},
|
|
41
|
+
[{"table_name": "Users"}, {"table_name": "Products"}],
|
|
42
|
+
marks=pytest.mark.skipif(
|
|
43
|
+
os.getenv("ENV") not in ("aws", "azure", "gcp"),
|
|
44
|
+
reason="MS SQL is only available in staging environments",
|
|
45
|
+
),
|
|
46
|
+
id="DataBaseDialect.MS_SQL",
|
|
47
|
+
),
|
|
21
48
|
]
|
|
@@ -72,10 +72,20 @@ CONFLUENCE_CLOUD_TOOL_PROMPT = """
|
|
|
72
72
|
relative_url='/rest/api/content/search'
|
|
73
73
|
method='GET'
|
|
74
74
|
params='{'cql': 'title ~ "codemie"', 'limit': 5, 'expand': 'body.storage'}'
|
|
75
|
+
or Search Kb tool
|
|
76
|
+
and return the page content
|
|
75
77
|
"""
|
|
76
78
|
|
|
77
79
|
RESPONSE_FOR_CONFLUENCE_CLOUD_TOOL = """
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
80
|
+
Here are some pages related to "codemie" from the Confluence space:
|
|
81
|
+
Codemie Platform
|
|
82
|
+
Title: Codemie Platform
|
|
83
|
+
URL: Codemie Platform
|
|
84
|
+
Description: This page mentions that "Codemie Platform is the best one."
|
|
85
|
+
|
|
86
|
+
CODEMIE Overview
|
|
87
|
+
Title: CODEMIE
|
|
88
|
+
URL: CODEMIE Overview
|
|
89
|
+
Description: This space includes a section for describing the purpose of the space, a search feature, and a filter by label functionality.
|
|
90
|
+
If you need more detailed information about a specific page, please let me know!
|
|
81
91
|
"""
|
|
@@ -563,3 +563,15 @@ class CredentialsUtil:
|
|
|
563
563
|
if cred.key == "kubernetes_token":
|
|
564
564
|
cred.value = "wrong_token"
|
|
565
565
|
return credentials
|
|
566
|
+
|
|
567
|
+
@staticmethod
|
|
568
|
+
def jira_cloud_jql() -> str:
|
|
569
|
+
jira_creds = AwsParameterStore.get_cloud_provider_credentials("jira")
|
|
570
|
+
return jira_creds.get("jiracloud", {}).get("jql")
|
|
571
|
+
|
|
572
|
+
@staticmethod
|
|
573
|
+
def confluence_cloud_jql() -> str:
|
|
574
|
+
confluence_creds = AwsParameterStore.get_cloud_provider_credentials(
|
|
575
|
+
"confluence"
|
|
576
|
+
)
|
|
577
|
+
return confluence_creds.get("confluencecloud", {}).get("cql")
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py
CHANGED
|
@@ -22,6 +22,7 @@ pytestmark = pytest.mark.skipif(
|
|
|
22
22
|
@pytest.mark.parametrize(
|
|
23
23
|
"toolkit,tool_name,db_dialect,prompt,expected_response",
|
|
24
24
|
sql_tools_test_data,
|
|
25
|
+
ids=[f"{row[2]}" for row in sql_tools_test_data],
|
|
25
26
|
)
|
|
26
27
|
def test_workflow_with_sql_tools_direct(
|
|
27
28
|
workflow_with_tool,
|
|
@@ -59,6 +60,7 @@ def test_workflow_with_sql_tools_direct(
|
|
|
59
60
|
@pytest.mark.parametrize(
|
|
60
61
|
"toolkit,tool_name,db_dialect,prompt,expected_response",
|
|
61
62
|
sql_tools_test_data,
|
|
63
|
+
ids=[f"{row[2]}" for row in sql_tools_test_data],
|
|
62
64
|
)
|
|
63
65
|
def test_workflow_with_sql_tools_with_hardcoded_args(
|
|
64
66
|
workflow_with_tool,
|
|
@@ -97,6 +99,7 @@ def test_workflow_with_sql_tools_with_hardcoded_args(
|
|
|
97
99
|
@pytest.mark.parametrize(
|
|
98
100
|
"toolkit,tool_name,db_dialect,prompt,expected_response",
|
|
99
101
|
sql_tools_test_data,
|
|
102
|
+
ids=[f"{row[2]}" for row in sql_tools_test_data],
|
|
100
103
|
)
|
|
101
104
|
def test_workflow_with_sql_tools_with_overriding_args(
|
|
102
105
|
workflow_with_tool,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: codemie-test-harness
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.135
|
|
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.135)
|
|
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=ASrWeb7WAqehvQkvz3g6h57stJuWAPj7jM
|
|
|
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=NZmw3efv_FBkyi-1FnkQjNknlg34w4PEFv0rodUvCFw,2599
|
|
16
|
-
codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py,sha256=
|
|
16
|
+
codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py,sha256=woV0grYUPqj8SNNdfbhnNvVdgGTC2Bca35JUWloSJM4,3206
|
|
17
17
|
codemie_test_harness/tests/assistant/datasource/test_file_indexing.py,sha256=VC3kFcbaOIMMN2-tCmwC4QdZLRGdCiMf1Dq7ZMFZNBE,5536
|
|
18
18
|
codemie_test_harness/tests/assistant/datasource/test_google_datasource.py,sha256=G1nj0Toj4SFVnfVpec5J9kKEfmzzl15G2-jtQolY4MA,2224
|
|
19
|
-
codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py,sha256=
|
|
19
|
+
codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py,sha256=s5MROPK0kGaX0-3WZFZbd35MzIHOrJ9GdtrTYSWz5P8,2951
|
|
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=FxYeYhc7EHpFmnDrthQl73BZg6p0beW0JJ5FUj6Kk88,7232
|
|
22
22
|
codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_kit.py,sha256=XgRn2bNCazNO5nml0ZXWqv4VuDGocCl6PbP5bopnyVA,7503
|
|
@@ -59,7 +59,7 @@ codemie_test_harness/tests/conftest.py,sha256=2EFM-VIh5BvJAlVCK4GTggGu4UbHWt5_dg
|
|
|
59
59
|
codemie_test_harness/tests/e2e/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
60
|
codemie_test_harness/tests/e2e/test_e2e.py,sha256=RUvSu_uNInU1OFfkNft3-Cmd0KZV7JdHqCxSK2ZWXHw,6257
|
|
61
61
|
codemie_test_harness/tests/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
-
codemie_test_harness/tests/enums/integrations.py,sha256=
|
|
62
|
+
codemie_test_harness/tests/enums/integrations.py,sha256=hG_cEKN0N5gtGHyrh3wuCpNAWhPyNOJaKsAw16iNshg,164
|
|
63
63
|
codemie_test_harness/tests/enums/model_types.py,sha256=k07srBYIF9uRwbLWY9pBNYzi0s3Jdt8ajES9p-UmrYo,1185
|
|
64
64
|
codemie_test_harness/tests/enums/tools.py,sha256=pGsHRGmPcLUqNtR2bKdRgsxdHw7HylXOWd9CPKPGOb0,5072
|
|
65
65
|
codemie_test_harness/tests/integrations/__init__.py,sha256=5vnZbxvYQ1Y91O8DJG3QfBHWcdYsMii59cMBzsvHBCg,237
|
|
@@ -94,14 +94,14 @@ codemie_test_harness/tests/test_data/ado_wiki_tools_test_data.py,sha256=xvgEja5v
|
|
|
94
94
|
codemie_test_harness/tests/test_data/ado_work_item_tools_test_data.py,sha256=MHou6QGjufyX5t1oexnq2Y4UCjlE17eeyMuIz6Ml62s,5693
|
|
95
95
|
codemie_test_harness/tests/test_data/cloud_tools_test_data.py,sha256=vq0a5vx9cyxVnen-Cx5KCg_szO4Lje0UfFbp85XtaxY,4701
|
|
96
96
|
codemie_test_harness/tests/test_data/codebase_tools_test_data.py,sha256=dpNKPtEZsBsjhnR3-pFBSkJRlExgjJ6fztK1spj04yI,3131
|
|
97
|
-
codemie_test_harness/tests/test_data/data_management_tools_test_data.py,sha256=
|
|
97
|
+
codemie_test_harness/tests/test_data/data_management_tools_test_data.py,sha256=olCcn8If6AETpmgNBE-ekmXAKlPGqt1MHGkxLacdU_0,4115
|
|
98
98
|
codemie_test_harness/tests/test_data/direct_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
99
|
codemie_test_harness/tests/test_data/direct_tools/ado_test_plan_tools_test_data.py,sha256=bDhoeFRlmafSZdRgOTOz122Q5tja7TsqtOxSTypeGVA,13120
|
|
100
100
|
codemie_test_harness/tests/test_data/direct_tools/ado_wiki_tools_test_data.py,sha256=qKNYW0kP32IQrRee8-H1mEWTUa5gb4UP0Me_4owtgeQ,1432
|
|
101
101
|
codemie_test_harness/tests/test_data/direct_tools/ado_work_item_tools_test_data.py,sha256=L-MhuQyRxRbb1WDje1rONjIxc_QxkgzaM5ssMWglcp0,7417
|
|
102
102
|
codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py,sha256=aehfRdIo6uSh00jJUGhfXxdFIQa6_Rw7OUF6Lo1LXTM,35201
|
|
103
103
|
codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py,sha256=GYAs-CGyvZGxkuJKOi1Wod_hK1noSw8zmnlF7UE78eA,11087
|
|
104
|
-
codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py,sha256=
|
|
104
|
+
codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py,sha256=Eeba0oxKUmBEin2Scbv3VnLOEQRLmK6QR0qk5cRYRNM,1583
|
|
105
105
|
codemie_test_harness/tests/test_data/direct_tools/direct_tools_test_data.py,sha256=y9awl1IA6EXGXyz05QzcNdt5z7Rk9J5LzIbfi4CFE3s,3233
|
|
106
106
|
codemie_test_harness/tests/test_data/direct_tools/file_management_tools_test_data.py,sha256=8Y8D_pmHVnzhSnYNeiJng3dQYj5k1GkBZ8-BLHlB5kE,1380
|
|
107
107
|
codemie_test_harness/tests/test_data/direct_tools/notification_tools_test_data.py,sha256=Blr7qIBEMxAh2_WRvFQr1hYt6wnez03v1b2SpEWha-o,1533
|
|
@@ -140,7 +140,7 @@ codemie_test_harness/tests/test_data/open_api_tools_test_data.py,sha256=XhVzelRX
|
|
|
140
140
|
codemie_test_harness/tests/test_data/openapi.json,sha256=X4uqtfjpTUuMifefQRf8mHI1k8pspp8-L0rpJlhLOI4,10459
|
|
141
141
|
codemie_test_harness/tests/test_data/output_schema_test_data.py,sha256=4l7AvXbMl9hIvoFxu1LPPSGz9hb5Uz2_is4zTm77ARY,261
|
|
142
142
|
codemie_test_harness/tests/test_data/plugin_tools_test_data.py,sha256=OnOKcstocjHSX_kzcsi3QNjAKyMB_nDSwtw9yLzPOoY,2926
|
|
143
|
-
codemie_test_harness/tests/test_data/pm_tools_test_data.py,sha256
|
|
143
|
+
codemie_test_harness/tests/test_data/pm_tools_test_data.py,sha256=ctPwLSJYy7xPg4B-uwAAhRwIogdxTgBn-PPY2rN0llc,3248
|
|
144
144
|
codemie_test_harness/tests/test_data/project_management_test_data.py,sha256=gdWlX6xhie7JpLurGjq5S8jBNLpp80fVQy5jV7BjNJk,1207
|
|
145
145
|
codemie_test_harness/tests/test_data/research_tools_test_data.py,sha256=FtOhWp7PbRdw36IUIa46OBbE2wy8yKZkpI6uwCfSoXQ,4745
|
|
146
146
|
codemie_test_harness/tests/test_data/servicenow_tools_test_data.py,sha256=PKw9zEYSNcQM1KApCSjsBiA_3Py0bNQI7clqw8cmT-s,1983
|
|
@@ -209,7 +209,7 @@ codemie_test_harness/tests/ui/test_workflow_templates.py,sha256=A6eaR-7M5VXoPlUJ
|
|
|
209
209
|
codemie_test_harness/tests/ui/test_workflows.py,sha256=_UQT9soqxV68aqFt0V3KJ3iJFA55kzE891EJIER9kk8,3464
|
|
210
210
|
codemie_test_harness/tests/utils/__init__.py,sha256=Bu1sRfq1DeSYdW979HKcg3LcG-yYHjZWLsPDiy1Wmus,346
|
|
211
211
|
codemie_test_harness/tests/utils/assistant_utils.py,sha256=2ziNJlLDDso-USjktN32bKX64x9pSkwC_Cj7rKEXlig,5419
|
|
212
|
-
codemie_test_harness/tests/utils/aws_parameters_store.py,sha256=
|
|
212
|
+
codemie_test_harness/tests/utils/aws_parameters_store.py,sha256=zpFR3PourK-jPOGkwoWOCx3YIHrx9TZkS5KF-QgbHJY,20612
|
|
213
213
|
codemie_test_harness/tests/utils/base_utils.py,sha256=tfishCUxO3iEuasWOifoF9_fXspm4uIHS26Ryqu-NxA,5998
|
|
214
214
|
codemie_test_harness/tests/utils/client_factory.py,sha256=Yyg2iXe7g7fIfIUbOH8z_8qgVo_lB-nYLOfCV5ONXFw,641
|
|
215
215
|
codemie_test_harness/tests/utils/constants.py,sha256=lb6mgLjt0GM85Khs18rL1jnE9ILx8L811ykNhpF6IDA,1111
|
|
@@ -275,7 +275,7 @@ codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_
|
|
|
275
275
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py,sha256=4h3z3tUTqBLZPjDQCbnW2CkoGX0gEjZlDkYbLHSilZA,2799
|
|
276
276
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py,sha256=uYK0ASA0BpVYh_ozvVRLkEkHABDlkuu0VxuwyXBkHIQ,3539
|
|
277
277
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_codebase_tools.py,sha256=Kul_o9d4KIPzWUhKNOv82A9S_8-Z0ALaTeO5AO2Ltzs,3821
|
|
278
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py,sha256=
|
|
278
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py,sha256=eIIHRovi_tNvINjOVYOQRB9uWIzfebwnDF4fWdx47Og,3899
|
|
279
279
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py,sha256=W1Q8fwfUzslnMQX7ObM8o1r5kx_GyZTjVGh-1979VNQ,2673
|
|
280
280
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_notification_tools.py,sha256=esLfjDk2zGBpqX0D0VJYQKW4qwuvXy1afiFI8PyfMbc,2931
|
|
281
281
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py,sha256=9il7_0U3m8Ekvw5bCP0WQlJ-27RpKhViyqlrjqsS5_Y,2949
|
|
@@ -321,7 +321,7 @@ codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.
|
|
|
321
321
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=Cxe5Yuy9JE_IEsnQOThpVIZQqpfLuHfDkF6JwLngDc8,890
|
|
322
322
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
323
323
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py,sha256=tm0NvUf_UtzLPTYJWykYpsNoxoVs-Eh80guDmRwImwg,1106
|
|
324
|
-
codemie_test_harness-0.1.
|
|
325
|
-
codemie_test_harness-0.1.
|
|
326
|
-
codemie_test_harness-0.1.
|
|
327
|
-
codemie_test_harness-0.1.
|
|
324
|
+
codemie_test_harness-0.1.135.dist-info/METADATA,sha256=mEwdZM_OH1YLuq6wAZl-_86HU8QDdO5luFGYWA9U3Vg,8998
|
|
325
|
+
codemie_test_harness-0.1.135.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
326
|
+
codemie_test_harness-0.1.135.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
|
|
327
|
+
codemie_test_harness-0.1.135.dist-info/RECORD,,
|
|
File without changes
|
{codemie_test_harness-0.1.133.dist-info → codemie_test_harness-0.1.135.dist-info}/entry_points.txt
RENAMED
|
File without changes
|