codemie-test-harness 0.1.157__py3-none-any.whl → 0.1.158__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/tools/datamanagement/test_assistant_with_data_management_tools.py +8 -4
- codemie_test_harness/tests/test_data/data_management_tools_test_data.py +4 -37
- codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py +1 -1
- codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py +4 -5
- codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py +4 -5
- {codemie_test_harness-0.1.157.dist-info → codemie_test_harness-0.1.158.dist-info}/METADATA +2 -2
- {codemie_test_harness-0.1.157.dist-info → codemie_test_harness-0.1.158.dist-info}/RECORD +10 -10
- codemie_test_harness/tests/workflow/direct_tools_calling/{test_workflow_with_data_management_tools.py → test_workflow_with_data_management_tools_sql.py} +1 -1
- {codemie_test_harness-0.1.157.dist-info → codemie_test_harness-0.1.158.dist-info}/WHEEL +0 -0
- {codemie_test_harness-0.1.157.dist-info → codemie_test_harness-0.1.158.dist-info}/entry_points.txt +0 -0
|
@@ -21,12 +21,15 @@ from codemie_test_harness.tests.test_data.data_management_tools_test_data import
|
|
|
21
21
|
)
|
|
22
22
|
from codemie_test_harness.tests.utils.aws_parameters_store import CredentialsUtil
|
|
23
23
|
|
|
24
|
+
pytestmark = pytest.mark.skipif(
|
|
25
|
+
os.getenv("ENV") == "local", reason="Skipping this tests on local environment"
|
|
26
|
+
)
|
|
27
|
+
|
|
24
28
|
|
|
25
29
|
@pytest.mark.assistant
|
|
26
30
|
@pytest.mark.elastic
|
|
27
31
|
@pytest.mark.regression
|
|
28
32
|
@pytest.mark.testcase("EPMCDME-6132")
|
|
29
|
-
@pytest.mark.skip(reason="Credentials for Elastic are not available")
|
|
30
33
|
def test_create_assistant_with_elastic_tool(
|
|
31
34
|
integration_utils, assistant, assistant_utils, similarity_check
|
|
32
35
|
):
|
|
@@ -49,14 +52,15 @@ def test_create_assistant_with_elastic_tool(
|
|
|
49
52
|
@pytest.mark.sql
|
|
50
53
|
@pytest.mark.regression
|
|
51
54
|
@pytest.mark.testcase("EPMCDME-6132")
|
|
52
|
-
@pytest.mark.skipif(
|
|
53
|
-
os.getenv("ENV") == "local", reason="Skipping this test on local environment"
|
|
54
|
-
)
|
|
55
55
|
@pytest.mark.parametrize(
|
|
56
56
|
"db_dialect",
|
|
57
57
|
sql_tools_test_data,
|
|
58
58
|
ids=[DataBaseDialect.MY_SQL, DataBaseDialect.POSTGRES, DataBaseDialect.MS_SQL],
|
|
59
59
|
)
|
|
60
|
+
@pytest.mark.testcase("EPMCDME-6132")
|
|
61
|
+
@pytest.mark.skipif(
|
|
62
|
+
os.getenv("ENV") == "local", reason="Skipping this test on local environment"
|
|
63
|
+
)
|
|
60
64
|
def test_create_assistant_with_sql_tool(
|
|
61
65
|
integration_utils, assistant_utils, assistant, similarity_check, db_dialect
|
|
62
66
|
):
|
|
@@ -5,46 +5,13 @@ import pytest
|
|
|
5
5
|
from codemie_test_harness.tests.enums.integrations import DataBaseDialect
|
|
6
6
|
|
|
7
7
|
ELASTIC_TOOL_TASK = """
|
|
8
|
-
|
|
8
|
+
send the query to Elastic:
|
|
9
|
+
{'index': 'codemie-*', 'query': {'size': 0, 'aggs': {'indices': {'terms': {'field': '_index', 'size': 5, 'order': {'_count': 'asc'}}}}}}
|
|
10
|
+
return only the number of failed from _shards node.
|
|
9
11
|
"""
|
|
10
12
|
|
|
11
13
|
RESPONSE_FOR_ELASTIC = """
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
- **Timestamp:** 2025-05-28T13:39:27.949Z
|
|
15
|
-
- **Metric Name:** conversation_assistant_usage
|
|
16
|
-
- **Attributes:**
|
|
17
|
-
- Count: 1
|
|
18
|
-
- User ID: 6c04c3d1-7967-481a-82d5-0b7da258a555
|
|
19
|
-
- User Name: Andrei Maskouchanka
|
|
20
|
-
- Assistant ID: 4657258e-19e5-4162-a6ec-2a76d11c14d1
|
|
21
|
-
- Assistant Name: Elastic Tool
|
|
22
|
-
- Input Tokens: 2414
|
|
23
|
-
- Output Tokens: 434
|
|
24
|
-
- Money Spent: 0.01858
|
|
25
|
-
- Project: andrei_maskouchanka@epam.com
|
|
26
|
-
- Execution Time: 11.09025979042053
|
|
27
|
-
- LLM Model: gpt-4o
|
|
28
|
-
- Conversation ID: 9ea412d5-c460-41f1-8071-35083538652c
|
|
29
|
-
- Status: success
|
|
30
|
-
|
|
31
|
-
- **Additional Information:**
|
|
32
|
-
- Time: 2025-05-28T13:39:27.949952597Z
|
|
33
|
-
- Stream: stderr
|
|
34
|
-
- Level: INFO
|
|
35
|
-
- UUID: 3fd6a83f6a266c7760a71406dbbef99f
|
|
36
|
-
- Kubernetes Details:
|
|
37
|
-
- Pod Name: codemie-api-69b9484d46-2hnpd
|
|
38
|
-
- Namespace Name: preview-codemie
|
|
39
|
-
- Pod ID: 97edb665-2b76-47ad-a545-3b7a2695a0e7
|
|
40
|
-
- Host: gke-epmd-edp-anthos--nap-e2-standard--e45b29fc-863z
|
|
41
|
-
- Pod IP: 172.20.6.90
|
|
42
|
-
- Container Name: codemie
|
|
43
|
-
- Docker ID: 11ec33dc943cfa7153f31cde412837ccfae711b1edc9bb7d20055614eeefbf15
|
|
44
|
-
- Container Hash: europe-west3-docker.pkg.dev/or2-msq-epmd-edp-anthos-t1iylu/prod/code-assistant@sha256:a0271b31b2a55cf71d319c6b5f394fbe7c6833db74fbb51ab22680bf096c6ecb
|
|
45
|
-
- Container Image: europe-west3-docker.pkg.dev/or2-msq-epmd-edp-anthos-t1iylu/prod/code-assistant:0.28.0-SNAPSHOT.10
|
|
46
|
-
|
|
47
|
-
If you need further details or assistance, please let me know!
|
|
14
|
+
The query was executed successfully. The number of failed shards from the _shards node is 0.
|
|
48
15
|
"""
|
|
49
16
|
|
|
50
17
|
SQL_TOOL_CREATE_TABLE_TASK = """
|
|
@@ -2,8 +2,8 @@ import os
|
|
|
2
2
|
|
|
3
3
|
import pytest
|
|
4
4
|
|
|
5
|
-
from codemie_test_harness.tests.enums.tools import DataManagementTool, Toolkit
|
|
6
5
|
from codemie_test_harness.tests.enums.integrations import DataBaseDialect
|
|
6
|
+
from codemie_test_harness.tests.enums.tools import DataManagementTool, Toolkit
|
|
7
7
|
|
|
8
8
|
sql_tools_test_data = [
|
|
9
9
|
(
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import os
|
|
2
2
|
|
|
3
3
|
import pytest
|
|
4
|
-
|
|
5
4
|
from codemie_sdk.models.integration import CredentialTypes
|
|
6
5
|
|
|
7
6
|
from codemie_test_harness.tests.enums.integrations import DataBaseDialect
|
|
@@ -18,12 +17,15 @@ from codemie_test_harness.tests.test_data.data_management_tools_test_data import
|
|
|
18
17
|
)
|
|
19
18
|
from codemie_test_harness.tests.utils.aws_parameters_store import CredentialsUtil
|
|
20
19
|
|
|
20
|
+
pytestmark = pytest.mark.skipif(
|
|
21
|
+
os.getenv("ENV") == "local", reason="Skipping this tests on local environment"
|
|
22
|
+
)
|
|
23
|
+
|
|
21
24
|
|
|
22
25
|
@pytest.mark.workflow
|
|
23
26
|
@pytest.mark.workflow_with_assistant
|
|
24
27
|
@pytest.mark.elastic
|
|
25
28
|
@pytest.mark.regression
|
|
26
|
-
@pytest.mark.skip(reason="Credentials for Elastic are not available")
|
|
27
29
|
def test_workflow_with_assistant_with_elastic_tools(
|
|
28
30
|
assistant,
|
|
29
31
|
workflow_with_assistant,
|
|
@@ -56,9 +58,6 @@ def test_workflow_with_assistant_with_elastic_tools(
|
|
|
56
58
|
sql_tools_test_data,
|
|
57
59
|
ids=[DataBaseDialect.MY_SQL, DataBaseDialect.POSTGRES, DataBaseDialect.MS_SQL],
|
|
58
60
|
)
|
|
59
|
-
@pytest.mark.skipif(
|
|
60
|
-
os.getenv("ENV") == "local", reason="Skipping this test on local environment"
|
|
61
|
-
)
|
|
62
61
|
def test_workflow_with_assistant_with_sql_tools(
|
|
63
62
|
assistant,
|
|
64
63
|
workflow_with_assistant,
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import os
|
|
2
2
|
|
|
3
3
|
import pytest
|
|
4
|
-
|
|
5
4
|
from codemie_sdk.models.integration import CredentialTypes
|
|
6
5
|
|
|
7
6
|
from codemie_test_harness.tests.enums.integrations import DataBaseDialect
|
|
@@ -19,13 +18,16 @@ from codemie_test_harness.tests.test_data.data_management_tools_test_data import
|
|
|
19
18
|
from codemie_test_harness.tests.utils.aws_parameters_store import CredentialsUtil
|
|
20
19
|
from codemie_test_harness.tests.utils.base_utils import get_random_name
|
|
21
20
|
|
|
21
|
+
pytestmark = pytest.mark.skipif(
|
|
22
|
+
os.getenv("ENV") == "local", reason="Skipping this tests on local environment"
|
|
23
|
+
)
|
|
24
|
+
|
|
22
25
|
|
|
23
26
|
@pytest.mark.workflow
|
|
24
27
|
@pytest.mark.virtual_workflow
|
|
25
28
|
@pytest.mark.elastic
|
|
26
29
|
@pytest.mark.regression
|
|
27
30
|
@pytest.mark.testcase("EPMCDME-6431")
|
|
28
|
-
@pytest.mark.skip(reason="Credentials for Elastic are not available")
|
|
29
31
|
def test_workflow_with_elastic_tools(
|
|
30
32
|
workflow_with_virtual_assistant,
|
|
31
33
|
workflow_utils,
|
|
@@ -61,9 +63,6 @@ def test_workflow_with_elastic_tools(
|
|
|
61
63
|
sql_tools_test_data,
|
|
62
64
|
ids=[DataBaseDialect.MY_SQL, DataBaseDialect.POSTGRES, DataBaseDialect.MS_SQL],
|
|
63
65
|
)
|
|
64
|
-
@pytest.mark.skipif(
|
|
65
|
-
os.getenv("ENV") == "local", reason="Skipping this test on local environment"
|
|
66
|
-
)
|
|
67
66
|
def test_workflow_with_sql_tools(
|
|
68
67
|
workflow_with_virtual_assistant,
|
|
69
68
|
workflow_utils,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: codemie-test-harness
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.158
|
|
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.158)
|
|
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)
|
|
@@ -34,7 +34,7 @@ codemie_test_harness/tests/assistant/tools/cloud/test_cloud_tools.py,sha256=ZJHY
|
|
|
34
34
|
codemie_test_harness/tests/assistant/tools/codebase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
35
|
codemie_test_harness/tests/assistant/tools/codebase/test_codebase_tools.py,sha256=zpqY68545CT6bpJqYYBeSsWdd_gPH7WKBmX9d1DCWMY,1692
|
|
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=h5Y_lOU622aVTEijcuzgG4aCumiOp1cK4WtGpSnLqQs,2854
|
|
38
38
|
codemie_test_harness/tests/assistant/tools/filemanagement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
39
|
codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py,sha256=-dW_PfYcFalQdvFEuTZ7_zcugqTuWdTdtuhB-UyLQWQ,4034
|
|
40
40
|
codemie_test_harness/tests/assistant/tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -98,14 +98,14 @@ codemie_test_harness/tests/test_data/ado_wiki_tools_test_data.py,sha256=xvgEja5v
|
|
|
98
98
|
codemie_test_harness/tests/test_data/ado_work_item_tools_test_data.py,sha256=MHou6QGjufyX5t1oexnq2Y4UCjlE17eeyMuIz6Ml62s,5693
|
|
99
99
|
codemie_test_harness/tests/test_data/cloud_tools_test_data.py,sha256=1bEN1agaZLrhRel9DcwLSNqo8ociKu44mFUnzgQYZxg,5095
|
|
100
100
|
codemie_test_harness/tests/test_data/codebase_tools_test_data.py,sha256=1ZaBFhh8lVRGVykSBqwepQ0juV8CN3PJk1gbvQWl5bc,3236
|
|
101
|
-
codemie_test_harness/tests/test_data/data_management_tools_test_data.py,sha256=
|
|
101
|
+
codemie_test_harness/tests/test_data/data_management_tools_test_data.py,sha256=XAfRQfI3LpxpPF0C_QlnS72S-XyQNI6zcaT5P8wBVDE,2702
|
|
102
102
|
codemie_test_harness/tests/test_data/direct_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
103
|
codemie_test_harness/tests/test_data/direct_tools/ado_test_plan_tools_test_data.py,sha256=bDhoeFRlmafSZdRgOTOz122Q5tja7TsqtOxSTypeGVA,13120
|
|
104
104
|
codemie_test_harness/tests/test_data/direct_tools/ado_wiki_tools_test_data.py,sha256=qKNYW0kP32IQrRee8-H1mEWTUa5gb4UP0Me_4owtgeQ,1432
|
|
105
105
|
codemie_test_harness/tests/test_data/direct_tools/ado_work_item_tools_test_data.py,sha256=L-MhuQyRxRbb1WDje1rONjIxc_QxkgzaM5ssMWglcp0,7417
|
|
106
106
|
codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py,sha256=0xJ3oH2lfL2Jn4yxgVgfaB6GeyW_pBxv-d1CSSAYrM8,35595
|
|
107
107
|
codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py,sha256=cj27AukbiXDj9KVnc2hSuCBWiUNVolxjVyYxB-qGF7w,6076
|
|
108
|
-
codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py,sha256=
|
|
108
|
+
codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py,sha256=0Uz9ndp3Xul3P-JZQXZJtkvnClvgU03n_0DPh9ry97c,1583
|
|
109
109
|
codemie_test_harness/tests/test_data/direct_tools/direct_tools_test_data.py,sha256=y9awl1IA6EXGXyz05QzcNdt5z7Rk9J5LzIbfi4CFE3s,3233
|
|
110
110
|
codemie_test_harness/tests/test_data/direct_tools/file_management_tools_test_data.py,sha256=8Y8D_pmHVnzhSnYNeiJng3dQYj5k1GkBZ8-BLHlB5kE,1380
|
|
111
111
|
codemie_test_harness/tests/test_data/direct_tools/keycloak_tool_test_data.py,sha256=6lU1YC6DSV6e_3VNQEVvtA4o3_lSFgOQik4T0u-TF1g,2979
|
|
@@ -250,7 +250,7 @@ codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_ass
|
|
|
250
250
|
codemie_test_harness/tests/workflow/assistant_tools/codebase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
251
|
codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py,sha256=jn0bTRkIzyZ6xYA9eWyyNXpC941ZmCDFhm3tSw6OrYI,2102
|
|
252
252
|
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=
|
|
253
|
+
codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py,sha256=WHGUeywBa2ntWP849tA6J1-5Wm5GecrapcJKPYHKTDY,3056
|
|
254
254
|
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
255
|
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool.py,sha256=uPeV2g6XV2jhhmAJ8VDYFQix4tQv6pQneqmYSNy2xQA,8738
|
|
256
256
|
codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py,sha256=8WqRPzkx5-0J8GJeQH4SDReOvN68AWO6H6SgoNX7zZM,9004
|
|
@@ -288,7 +288,7 @@ codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_
|
|
|
288
288
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py,sha256=Owlau_ITGNxtgETP2QtHs7lNWpms-F-hxQWgoKZzoic,2991
|
|
289
289
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py,sha256=aJQrcU3i1uI50fR4njK2GxYifG8K6Sg7VGpXRjIbJPc,3725
|
|
290
290
|
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/
|
|
291
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_sql.py,sha256=zpFuEaqdCiU0N0lF21IZpWW7TdgBgVDRY7Axu2XQPN0,4091
|
|
292
292
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py,sha256=VnkTiPX2GiIoebMbproLRc8zwxpdkuALicUWr6EhEH4,2901
|
|
293
293
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_notification_tools.py,sha256=qfrJxtySw0l_eLTATC6mjHv2ir14UVbY98nt2H0sI1w,3004
|
|
294
294
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py,sha256=VAXKozCf6C1yJ-23v-CME96aMsJz2okrsELdlIorbwg,3153
|
|
@@ -310,7 +310,7 @@ codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_
|
|
|
310
310
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/__init__.py,sha256=kCzJLR44IfB9ZncaLNOtyUqlzvyOG3BXclsDFS5MaQg,46
|
|
311
311
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py,sha256=O62Jla1m2pMyeB0t3CbUqe70dVNbLR-eM1nZt07duDo,3217
|
|
312
312
|
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=
|
|
313
|
+
codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py,sha256=rykifHHRXHtpPzZE-T-3mnKzNdGNKsOY2pM0IZoB7jI,3330
|
|
314
314
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
315
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool.py,sha256=ZIYQJdtyZxKmMHyIN5nW3MCG3vBxVWp8krtacWQ09v8,8641
|
|
316
316
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py,sha256=CRpvBaq7ghzAAvZMaFf9WvGgnv3DANZqQMCbppsYlwg,8927
|
|
@@ -336,7 +336,7 @@ codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.
|
|
|
336
336
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=vq6tucNBxiNIQSmIj_pYiiPm0lipU9X3kzeCd6xEbRM,966
|
|
337
337
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
338
|
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.
|
|
339
|
+
codemie_test_harness-0.1.158.dist-info/METADATA,sha256=P3GmU3nEFztfNz5FI7yZqHY8gEOXjJolowdB-Oh8Cy8,8998
|
|
340
|
+
codemie_test_harness-0.1.158.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
341
|
+
codemie_test_harness-0.1.158.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
|
|
342
|
+
codemie_test_harness-0.1.158.dist-info/RECORD,,
|
|
@@ -4,9 +4,9 @@ import os
|
|
|
4
4
|
import random
|
|
5
5
|
|
|
6
6
|
import pytest
|
|
7
|
+
from codemie_sdk.models.integration import CredentialTypes
|
|
7
8
|
from hamcrest import assert_that, contains_inanyorder
|
|
8
9
|
|
|
9
|
-
from codemie_sdk.models.integration import CredentialTypes
|
|
10
10
|
from codemie_test_harness.tests.test_data.direct_tools.data_management_tools_test_data import (
|
|
11
11
|
sql_tools_test_data,
|
|
12
12
|
)
|
|
File without changes
|
{codemie_test_harness-0.1.157.dist-info → codemie_test_harness-0.1.158.dist-info}/entry_points.txt
RENAMED
|
File without changes
|