codemie-test-harness 0.1.137__py3-none-any.whl → 0.1.139__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/__init__.py +3 -0
- codemie_test_harness/tests/assistant/test_assistants.py +2 -0
- codemie_test_harness/tests/test_data/cloud_tools_test_data.py +5 -1
- codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py +5 -1
- codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py +28 -159
- codemie_test_harness/tests/test_data/integrations_test_data.py +10 -2
- codemie_test_harness/tests/test_data/llm_test_data.py +0 -1
- codemie_test_harness/tests/test_data/vcs_tools_test_data.py +4 -1
- codemie_test_harness/tests/utils/__init__.py +0 -12
- codemie_test_harness/tests/utils/aws_parameters_store.py +1 -1
- codemie_test_harness/tests/utils/provider_utils.py +2 -3
- codemie_test_harness/tests/utils/workflow_utils.py +2 -3
- codemie_test_harness/tests/workflow/config_validation/test_config_validation.py +1 -1
- 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_research_tools.py +3 -3
- {codemie_test_harness-0.1.137.dist-info → codemie_test_harness-0.1.139.dist-info}/METADATA +2 -2
- {codemie_test_harness-0.1.137.dist-info → codemie_test_harness-0.1.139.dist-info}/RECORD +19 -19
- {codemie_test_harness-0.1.137.dist-info → codemie_test_harness-0.1.139.dist-info}/WHEEL +0 -0
- {codemie_test_harness-0.1.137.dist-info → codemie_test_harness-0.1.139.dist-info}/entry_points.txt +0 -0
|
@@ -39,6 +39,9 @@ PROJECT = os.getenv("PROJECT_NAME", "codemie")
|
|
|
39
39
|
TEST_USER = os.getenv("TEST_USER_FULL_NAME", "Test User")
|
|
40
40
|
GITHUB_URL = os.getenv("GITHUB_URL", "https://github.com")
|
|
41
41
|
|
|
42
|
+
API_DOMAIN = os.getenv("CODEMIE_API_DOMAIN")
|
|
43
|
+
VERIFY_SSL = os.getenv("VERIFY_SSL", "").lower() == "true"
|
|
44
|
+
|
|
42
45
|
autotest_entity_prefix = (
|
|
43
46
|
f"{''.join(random.choice(string.ascii_lowercase) for _ in range(3))}_"
|
|
44
47
|
)
|
|
@@ -220,6 +220,8 @@ def test_create_assistant_and_prompt_with_file(
|
|
|
220
220
|
prompt = (
|
|
221
221
|
f"What is the content/text of the {file_name}. Show information from ALL pages. "
|
|
222
222
|
"For PDF use 'Text' for query. If provided file is CSV then run python_repl_ast tool and show first 5 rows."
|
|
223
|
+
"For images explain what you see on it."
|
|
224
|
+
"For excel show data from the sheet with name 'Sheet1'"
|
|
223
225
|
)
|
|
224
226
|
|
|
225
227
|
assistant = assistant(system_prompt=system_prompt_for_chatting_with_files)
|
|
@@ -106,7 +106,7 @@ cloud_test_data = [
|
|
|
106
106
|
reason="Still have an issue with encoding long strings",
|
|
107
107
|
),
|
|
108
108
|
),
|
|
109
|
-
(
|
|
109
|
+
pytest.param(
|
|
110
110
|
Toolkit.CLOUD,
|
|
111
111
|
CloudTool.KUBERNETES,
|
|
112
112
|
CredentialTypes.KUBERNETES,
|
|
@@ -126,5 +126,9 @@ cloud_test_data = [
|
|
|
126
126
|
7. argo-cd-redis-ha-announce-2
|
|
127
127
|
8. argo-cd-redis-ha-haproxy
|
|
128
128
|
""",
|
|
129
|
+
marks=pytest.mark.skipif(
|
|
130
|
+
os.getenv("ENV") == "azure",
|
|
131
|
+
reason="Still have an issue with encoding long strings",
|
|
132
|
+
),
|
|
129
133
|
),
|
|
130
134
|
]
|
|
@@ -170,7 +170,7 @@ cloud_test_data = [
|
|
|
170
170
|
reason="Still have an issue with encoding long strings",
|
|
171
171
|
),
|
|
172
172
|
),
|
|
173
|
-
(
|
|
173
|
+
pytest.param(
|
|
174
174
|
Toolkit.CLOUD,
|
|
175
175
|
CloudTool.KUBERNETES,
|
|
176
176
|
CredentialTypes.KUBERNETES,
|
|
@@ -836,5 +836,9 @@ cloud_test_data = [
|
|
|
836
836
|
} ]
|
|
837
837
|
}
|
|
838
838
|
""",
|
|
839
|
+
marks=pytest.mark.skipif(
|
|
840
|
+
os.getenv("ENV") == "azure",
|
|
841
|
+
reason="Still have an issue with encoding long strings",
|
|
842
|
+
),
|
|
839
843
|
),
|
|
840
844
|
]
|
|
@@ -18,183 +18,52 @@ sonar_tools_test_data = [
|
|
|
18
18
|
"pageSize" : 1,
|
|
19
19
|
"total" : 81
|
|
20
20
|
},
|
|
21
|
-
"effortTotal" :
|
|
21
|
+
"effortTotal" : 487,
|
|
22
22
|
"issues" : [ {
|
|
23
|
-
"key" : "
|
|
24
|
-
"rule" : "python:
|
|
25
|
-
"severity" : "
|
|
26
|
-
"component" : "codemie:src/codemie/service/
|
|
23
|
+
"key" : "62422172-099f-4395-bcdd-afbbbab6fb51",
|
|
24
|
+
"rule" : "python:S6353",
|
|
25
|
+
"severity" : "MINOR",
|
|
26
|
+
"component" : "codemie:src/codemie/service/tools/dynamic_value_utils.py",
|
|
27
27
|
"project" : "codemie",
|
|
28
|
-
"line" :
|
|
29
|
-
"hash" : "
|
|
28
|
+
"line" : 48,
|
|
29
|
+
"hash" : "c5800fd84edcdca903a5a9105f31e263",
|
|
30
30
|
"textRange" : {
|
|
31
|
-
"startLine" :
|
|
32
|
-
"endLine" :
|
|
33
|
-
"startOffset" :
|
|
34
|
-
"endOffset" :
|
|
31
|
+
"startLine" : 48,
|
|
32
|
+
"endLine" : 48,
|
|
33
|
+
"startOffset" : 33,
|
|
34
|
+
"endOffset" : 45
|
|
35
35
|
},
|
|
36
|
-
"flows" : [
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"startOffset" : 8,
|
|
43
|
-
"endOffset" : 10
|
|
44
|
-
},
|
|
45
|
-
"msg" : "+1",
|
|
46
|
-
"msgFormattings" : [ ]
|
|
47
|
-
} ]
|
|
48
|
-
}, {
|
|
49
|
-
"locations" : [ {
|
|
50
|
-
"component" : "codemie:src/codemie/service/assistant_service.py",
|
|
51
|
-
"textRange" : {
|
|
52
|
-
"startLine" : 773,
|
|
53
|
-
"endLine" : 773,
|
|
54
|
-
"startOffset" : 12,
|
|
55
|
-
"endOffset" : 14
|
|
56
|
-
},
|
|
57
|
-
"msg" : "+2 (incl 1 for nesting)",
|
|
58
|
-
"msgFormattings" : [ ]
|
|
59
|
-
} ]
|
|
60
|
-
}, {
|
|
61
|
-
"locations" : [ {
|
|
62
|
-
"component" : "codemie:src/codemie/service/assistant_service.py",
|
|
63
|
-
"textRange" : {
|
|
64
|
-
"startLine" : 775,
|
|
65
|
-
"endLine" : 775,
|
|
66
|
-
"startOffset" : 8,
|
|
67
|
-
"endOffset" : 12
|
|
68
|
-
},
|
|
69
|
-
"msg" : "+1",
|
|
70
|
-
"msgFormattings" : [ ]
|
|
71
|
-
} ]
|
|
72
|
-
}, {
|
|
73
|
-
"locations" : [ {
|
|
74
|
-
"component" : "codemie:src/codemie/service/assistant_service.py",
|
|
75
|
-
"textRange" : {
|
|
76
|
-
"startLine" : 780,
|
|
77
|
-
"endLine" : 780,
|
|
78
|
-
"startOffset" : 8,
|
|
79
|
-
"endOffset" : 11
|
|
80
|
-
},
|
|
81
|
-
"msg" : "+1",
|
|
82
|
-
"msgFormattings" : [ ]
|
|
83
|
-
} ]
|
|
84
|
-
}, {
|
|
85
|
-
"locations" : [ {
|
|
86
|
-
"component" : "codemie:src/codemie/service/assistant_service.py",
|
|
87
|
-
"textRange" : {
|
|
88
|
-
"startLine" : 781,
|
|
89
|
-
"endLine" : 781,
|
|
90
|
-
"startOffset" : 12,
|
|
91
|
-
"endOffset" : 14
|
|
92
|
-
},
|
|
93
|
-
"msg" : "+2 (incl 1 for nesting)",
|
|
94
|
-
"msgFormattings" : [ ]
|
|
95
|
-
} ]
|
|
96
|
-
}, {
|
|
97
|
-
"locations" : [ {
|
|
98
|
-
"component" : "codemie:src/codemie/service/assistant_service.py",
|
|
99
|
-
"textRange" : {
|
|
100
|
-
"startLine" : 785,
|
|
101
|
-
"endLine" : 785,
|
|
102
|
-
"startOffset" : 8,
|
|
103
|
-
"endOffset" : 10
|
|
104
|
-
},
|
|
105
|
-
"msg" : "+1",
|
|
106
|
-
"msgFormattings" : [ ]
|
|
107
|
-
} ]
|
|
108
|
-
}, {
|
|
109
|
-
"locations" : [ {
|
|
110
|
-
"component" : "codemie:src/codemie/service/assistant_service.py",
|
|
111
|
-
"textRange" : {
|
|
112
|
-
"startLine" : 785,
|
|
113
|
-
"endLine" : 785,
|
|
114
|
-
"startOffset" : 30,
|
|
115
|
-
"endOffset" : 33
|
|
116
|
-
},
|
|
117
|
-
"msg" : "+1",
|
|
118
|
-
"msgFormattings" : [ ]
|
|
119
|
-
} ]
|
|
120
|
-
}, {
|
|
121
|
-
"locations" : [ {
|
|
122
|
-
"component" : "codemie:src/codemie/service/assistant_service.py",
|
|
123
|
-
"textRange" : {
|
|
124
|
-
"startLine" : 787,
|
|
125
|
-
"endLine" : 787,
|
|
126
|
-
"startOffset" : 12,
|
|
127
|
-
"endOffset" : 15
|
|
128
|
-
},
|
|
129
|
-
"msg" : "+2 (incl 1 for nesting)",
|
|
130
|
-
"msgFormattings" : [ ]
|
|
131
|
-
} ]
|
|
132
|
-
}, {
|
|
133
|
-
"locations" : [ {
|
|
134
|
-
"component" : "codemie:src/codemie/service/assistant_service.py",
|
|
135
|
-
"textRange" : {
|
|
136
|
-
"startLine" : 788,
|
|
137
|
-
"endLine" : 788,
|
|
138
|
-
"startOffset" : 16,
|
|
139
|
-
"endOffset" : 18
|
|
140
|
-
},
|
|
141
|
-
"msg" : "+3 (incl 2 for nesting)",
|
|
142
|
-
"msgFormattings" : [ ]
|
|
143
|
-
} ]
|
|
144
|
-
}, {
|
|
145
|
-
"locations" : [ {
|
|
146
|
-
"component" : "codemie:src/codemie/service/assistant_service.py",
|
|
147
|
-
"textRange" : {
|
|
148
|
-
"startLine" : 792,
|
|
149
|
-
"endLine" : 792,
|
|
150
|
-
"startOffset" : 12,
|
|
151
|
-
"endOffset" : 14
|
|
152
|
-
},
|
|
153
|
-
"msg" : "+2 (incl 1 for nesting)",
|
|
154
|
-
"msgFormattings" : [ ]
|
|
155
|
-
} ]
|
|
156
|
-
}, {
|
|
157
|
-
"locations" : [ {
|
|
158
|
-
"component" : "codemie:src/codemie/service/assistant_service.py",
|
|
159
|
-
"textRange" : {
|
|
160
|
-
"startLine" : 801,
|
|
161
|
-
"endLine" : 801,
|
|
162
|
-
"startOffset" : 8,
|
|
163
|
-
"endOffset" : 10
|
|
164
|
-
},
|
|
165
|
-
"msg" : "+1",
|
|
166
|
-
"msgFormattings" : [ ]
|
|
167
|
-
} ]
|
|
168
|
-
} ],
|
|
169
|
-
"status" : "OPEN",
|
|
170
|
-
"message" : "Refactor this function to reduce its Cognitive Complexity from 17 to the 15 allowed.",
|
|
171
|
-
"effort" : "7min",
|
|
172
|
-
"debt" : "7min",
|
|
36
|
+
"flows" : [ ],
|
|
37
|
+
"resolution" : "FALSE-POSITIVE",
|
|
38
|
+
"status" : "RESOLVED",
|
|
39
|
+
"message" : "Use concise character class syntax '\\w' instead of '[a-zA-Z0-9_]'.",
|
|
40
|
+
"effort" : "5min",
|
|
41
|
+
"debt" : "5min",
|
|
173
42
|
"author" : "",
|
|
174
|
-
"tags" : [ "
|
|
175
|
-
"creationDate" : "2025-
|
|
176
|
-
"updateDate" : "2025-
|
|
43
|
+
"tags" : [ "regex" ],
|
|
44
|
+
"creationDate" : "2025-09-01T09:01:30+0000",
|
|
45
|
+
"updateDate" : "2025-09-01T09:01:30+0000",
|
|
177
46
|
"type" : "CODE_SMELL",
|
|
178
47
|
"scope" : "MAIN",
|
|
179
48
|
"quickFixAvailable" : false,
|
|
180
49
|
"messageFormattings" : [ ],
|
|
181
50
|
"codeVariants" : [ ],
|
|
182
|
-
"cleanCodeAttribute" : "
|
|
183
|
-
"cleanCodeAttributeCategory" : "
|
|
51
|
+
"cleanCodeAttribute" : "CLEAR",
|
|
52
|
+
"cleanCodeAttributeCategory" : "INTENTIONAL",
|
|
184
53
|
"impacts" : [ {
|
|
185
54
|
"softwareQuality" : "MAINTAINABILITY",
|
|
186
|
-
"severity" : "
|
|
55
|
+
"severity" : "LOW"
|
|
187
56
|
} ],
|
|
188
|
-
"issueStatus" : "
|
|
57
|
+
"issueStatus" : "FALSE_POSITIVE",
|
|
189
58
|
"prioritizedRule" : false
|
|
190
59
|
} ],
|
|
191
60
|
"components" : [ {
|
|
192
|
-
"key" : "codemie:src/codemie/service/
|
|
61
|
+
"key" : "codemie:src/codemie/service/tools/dynamic_value_utils.py",
|
|
193
62
|
"enabled" : true,
|
|
194
63
|
"qualifier" : "FIL",
|
|
195
|
-
"name" : "
|
|
196
|
-
"longName" : "src/codemie/service/
|
|
197
|
-
"path" : "src/codemie/service/
|
|
64
|
+
"name" : "dynamic_value_utils.py",
|
|
65
|
+
"longName" : "src/codemie/service/tools/dynamic_value_utils.py",
|
|
66
|
+
"path" : "src/codemie/service/tools/dynamic_value_utils.py"
|
|
198
67
|
}, {
|
|
199
68
|
"key" : "codemie",
|
|
200
69
|
"enabled" : true,
|
|
@@ -91,9 +91,13 @@ valid_integrations = [
|
|
|
91
91
|
CredentialTypes.SERVICE_NOW,
|
|
92
92
|
CredentialsUtil.servicenow_credentials(),
|
|
93
93
|
),
|
|
94
|
-
(
|
|
94
|
+
pytest.param(
|
|
95
95
|
CredentialTypes.KUBERNETES,
|
|
96
96
|
CredentialsUtil.kubernetes_credentials(),
|
|
97
|
+
marks=pytest.mark.skipif(
|
|
98
|
+
os.getenv("ENV") == "azure",
|
|
99
|
+
reason="Still have an issue with encoding long strings",
|
|
100
|
+
),
|
|
97
101
|
),
|
|
98
102
|
]
|
|
99
103
|
|
|
@@ -150,9 +154,13 @@ testable_integrations = [
|
|
|
150
154
|
CredentialTypes.SERVICE_NOW,
|
|
151
155
|
CredentialsUtil.servicenow_credentials(),
|
|
152
156
|
),
|
|
153
|
-
(
|
|
157
|
+
pytest.param(
|
|
154
158
|
CredentialTypes.KUBERNETES,
|
|
155
159
|
CredentialsUtil.kubernetes_credentials(),
|
|
160
|
+
marks=pytest.mark.skipif(
|
|
161
|
+
os.getenv("ENV") == "azure",
|
|
162
|
+
reason="Still have an issue with encoding long strings",
|
|
163
|
+
),
|
|
156
164
|
),
|
|
157
165
|
]
|
|
158
166
|
|
|
@@ -39,7 +39,6 @@ MODEL_RESPONSES = [
|
|
|
39
39
|
ModelTypes.CLAUDE_SONNET_V2_VERTEX,
|
|
40
40
|
GCP_ENVS,
|
|
41
41
|
),
|
|
42
|
-
LlmResponseData(ModelTypes.GEMINI_15_PRO, GCP_ENVS),
|
|
43
42
|
LlmResponseData(ModelTypes.GEMINI_20_FLASH, GCP_ENVS),
|
|
44
43
|
LlmResponseData(ModelTypes.GEMINI_25_PRO, GCP_ENVS),
|
|
45
44
|
LlmResponseData(
|
|
@@ -2,7 +2,10 @@ import os
|
|
|
2
2
|
|
|
3
3
|
from codemie_test_harness.tests.enums.tools import VcsTool
|
|
4
4
|
|
|
5
|
-
GITHUB_TOOL_TASK =
|
|
5
|
+
GITHUB_TOOL_TASK = (
|
|
6
|
+
f"Using github tool get info about issue №5 for the repo {os.getenv('GITHUB_PROJECT')}. "
|
|
7
|
+
f"Do not wrap tool parameters in additional query object"
|
|
8
|
+
)
|
|
6
9
|
|
|
7
10
|
RESPONSE_FOR_GITHUB = """
|
|
8
11
|
Issue #5 Details for Repository wild47/final_task
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import os
|
|
2
|
-
from pathlib import Path
|
|
3
|
-
|
|
4
|
-
from dotenv import load_dotenv
|
|
5
|
-
from codemie_test_harness.cli.runner import resolve_tests_path_and_root
|
|
6
|
-
|
|
7
|
-
_, root_dir = resolve_tests_path_and_root()
|
|
8
|
-
env_path = Path(root_dir) / ".env"
|
|
9
|
-
load_dotenv(env_path)
|
|
10
|
-
|
|
11
|
-
api_domain = os.getenv("CODEMIE_API_DOMAIN")
|
|
12
|
-
verify_ssl = os.getenv("VERIFY_SSL", "").lower() == "true"
|
|
@@ -420,7 +420,7 @@ class CredentialsUtil:
|
|
|
420
420
|
elastic_creds = (
|
|
421
421
|
elastic_creds.get("elasticsearch", {})
|
|
422
422
|
if os.getenv("ENV") == "preview"
|
|
423
|
-
else elastic_creds.get("sandbox", {})
|
|
423
|
+
else elastic_creds.get("sandbox", {}).get("elasticsearch", {})
|
|
424
424
|
)
|
|
425
425
|
return [
|
|
426
426
|
CredentialValues(key="url", value=elastic_creds.get("url")),
|
|
@@ -6,8 +6,7 @@ from typing import Optional, Dict, Any
|
|
|
6
6
|
import requests
|
|
7
7
|
from codemie_sdk import CodeMieClient
|
|
8
8
|
|
|
9
|
-
from codemie_test_harness.tests import autotest_entity_prefix
|
|
10
|
-
from codemie_test_harness.tests.utils import api_domain, verify_ssl
|
|
9
|
+
from codemie_test_harness.tests import autotest_entity_prefix, API_DOMAIN, VERIFY_SSL
|
|
11
10
|
from codemie_test_harness.tests.utils.base_utils import (
|
|
12
11
|
BaseUtils,
|
|
13
12
|
get_random_name,
|
|
@@ -24,7 +23,7 @@ class ProviderUtils(BaseUtils):
|
|
|
24
23
|
"""Initialize the provides service."""
|
|
25
24
|
|
|
26
25
|
super().__init__(client)
|
|
27
|
-
self._api = RequestHandler(
|
|
26
|
+
self._api = RequestHandler(API_DOMAIN, self.client.token, VERIFY_SSL)
|
|
28
27
|
|
|
29
28
|
@staticmethod
|
|
30
29
|
def provider_request_json():
|
|
@@ -5,8 +5,7 @@ from codemie_sdk.models.workflow import (
|
|
|
5
5
|
WorkflowUpdateRequest,
|
|
6
6
|
WorkflowMode,
|
|
7
7
|
)
|
|
8
|
-
from codemie_test_harness.tests import PROJECT
|
|
9
|
-
from codemie_test_harness.tests.utils import api_domain, verify_ssl
|
|
8
|
+
from codemie_test_harness.tests import PROJECT, API_DOMAIN, VERIFY_SSL
|
|
10
9
|
from codemie_test_harness.tests.utils.base_utils import (
|
|
11
10
|
BaseUtils,
|
|
12
11
|
get_random_name,
|
|
@@ -40,7 +39,7 @@ class WorkflowUtils(BaseUtils):
|
|
|
40
39
|
Raw response from '/v1/workflows' endpoint
|
|
41
40
|
"""
|
|
42
41
|
|
|
43
|
-
request_handler = RequestHandler(
|
|
42
|
+
request_handler = RequestHandler(API_DOMAIN, self.client.token, VERIFY_SSL)
|
|
44
43
|
|
|
45
44
|
return request_handler.post(
|
|
46
45
|
workflow_endpoint, dict, json_data=request.model_dump()
|
|
@@ -85,7 +85,7 @@ INVALID_CONFIG_PATH = "test_data/workflow/invalid_config/"
|
|
|
85
85
|
@pytest.mark.parametrize(
|
|
86
86
|
"file_name, expected_errors",
|
|
87
87
|
VALIDATION_TEST_DATA,
|
|
88
|
-
ids=[f"{row[
|
|
88
|
+
ids=[f"{row[0]}" for row in VALIDATION_TEST_DATA],
|
|
89
89
|
)
|
|
90
90
|
@pytest.mark.testcase("EPMCDME-5458")
|
|
91
91
|
@pytest.mark.regression
|
|
@@ -45,7 +45,7 @@ def test_workflow_with_cloud_tools_direct(
|
|
|
45
45
|
_workflow.id, tool_and_state_name, user_input=json.dumps(prompt)
|
|
46
46
|
)
|
|
47
47
|
|
|
48
|
-
similarity_check.check_similarity(response, expected_response
|
|
48
|
+
similarity_check.check_similarity(response, expected_response)
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
@pytest.mark.regression
|
|
@@ -80,7 +80,7 @@ def test_workflow_with_cloud_tools_with_hardcoded_args(
|
|
|
80
80
|
)
|
|
81
81
|
response = workflow_utils.execute_workflow(_workflow.id, tool_and_state_name)
|
|
82
82
|
|
|
83
|
-
similarity_check.check_similarity(response, expected_response
|
|
83
|
+
similarity_check.check_similarity(response, expected_response)
|
|
84
84
|
|
|
85
85
|
|
|
86
86
|
@pytest.mark.regression
|
|
@@ -120,4 +120,4 @@ def test_workflow_with_cloud_tools_with_overriding_args(
|
|
|
120
120
|
_workflow.id, tool_and_state_name, user_input=json.dumps(prompt)
|
|
121
121
|
)
|
|
122
122
|
|
|
123
|
-
similarity_check.check_similarity(response, expected_response
|
|
123
|
+
similarity_check.check_similarity(response, expected_response)
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_research_tools.py
CHANGED
|
@@ -29,7 +29,7 @@ def test_workflow_with_research_tools_direct(
|
|
|
29
29
|
response = workflow_utils.execute_workflow(
|
|
30
30
|
test_workflow.id, tool_and_state_name, json.dumps(prompt)
|
|
31
31
|
)
|
|
32
|
-
similarity_check.check_similarity(response, expected_response
|
|
32
|
+
similarity_check.check_similarity(response, expected_response)
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
@pytest.mark.regression
|
|
@@ -49,7 +49,7 @@ def test_workflow_with_research_tools_with_hardcoded_args(
|
|
|
49
49
|
tool_and_state_name = get_random_name()
|
|
50
50
|
test_workflow = workflow_with_tool(tool_and_state_name, tool_name, tool_args=prompt)
|
|
51
51
|
response = workflow_utils.execute_workflow(test_workflow.id, tool_and_state_name)
|
|
52
|
-
similarity_check.check_similarity(response, expected_response
|
|
52
|
+
similarity_check.check_similarity(response, expected_response)
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
@pytest.mark.regression
|
|
@@ -77,4 +77,4 @@ def test_workflow_with_research_tools_with_overriding_args(
|
|
|
77
77
|
response = workflow_utils.execute_workflow(
|
|
78
78
|
test_workflow.id, tool_and_state_name, user_input=json.dumps(prompt)
|
|
79
79
|
)
|
|
80
|
-
similarity_check.check_similarity(response, expected_response
|
|
80
|
+
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.139
|
|
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.139)
|
|
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)
|
|
@@ -9,7 +9,7 @@ codemie_test_harness/cli/constants.py,sha256=956_apPJ4MjhnKo1ZtDooXCd2N89J3vyAB-
|
|
|
9
9
|
codemie_test_harness/cli/runner.py,sha256=5VAL4noqiKrGjo5oYVJKzt4QNmkZFTe1Mw6Mll9uGfc,2349
|
|
10
10
|
codemie_test_harness/cli/utils.py,sha256=NlRa8VFbXTbD74jfUaSqbccGNu2R1dUIg8d5SyDTmIM,1136
|
|
11
11
|
codemie_test_harness/pytest.ini,sha256=Sxr-zVHZ9hJt2Ks0x7xxjh_SA-KhD-vRrDWAfDd9QKs,192
|
|
12
|
-
codemie_test_harness/tests/__init__.py,sha256=
|
|
12
|
+
codemie_test_harness/tests/__init__.py,sha256=pVv8urVVN2gfi07RzOu-a96EPEEOH-rtRCqBtjnmbRk,1421
|
|
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
|
|
@@ -21,7 +21,7 @@ codemie_test_harness/tests/assistant/default_integrations/__init__.py,sha256=47D
|
|
|
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
|
|
23
23
|
codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_with_datasource.py,sha256=pYbhC7wSt5ekL-OERggxiuaAZYvxAtT2QdKiKfLVzi4,9809
|
|
24
|
-
codemie_test_harness/tests/assistant/test_assistants.py,sha256=
|
|
24
|
+
codemie_test_harness/tests/assistant/test_assistants.py,sha256=eSLZ6hIaQZcFs32V65_ZZwhsbZztslmoxgV2BzyPy6I,12157
|
|
25
25
|
codemie_test_harness/tests/assistant/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
26
|
codemie_test_harness/tests/assistant/tools/ado/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
27
|
codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_test_plan_tools.py,sha256=jfkd8KoVRhyQ5PnjU5gdtmHp34oaayBFxFE-B329RDc,4925
|
|
@@ -92,15 +92,15 @@ codemie_test_harness/tests/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
|
92
92
|
codemie_test_harness/tests/test_data/ado_test_plan_tools_test_data.py,sha256=Al5u4HNfrcoj-b072uEGsqUqjKqwXLGJXKQ0QeJT3PI,5778
|
|
93
93
|
codemie_test_harness/tests/test_data/ado_wiki_tools_test_data.py,sha256=xvgEja5vE0l41sP4fE0stdFLQ0M201FWynOCEcRYufE,3188
|
|
94
94
|
codemie_test_harness/tests/test_data/ado_work_item_tools_test_data.py,sha256=MHou6QGjufyX5t1oexnq2Y4UCjlE17eeyMuIz6Ml62s,5693
|
|
95
|
-
codemie_test_harness/tests/test_data/cloud_tools_test_data.py,sha256=
|
|
95
|
+
codemie_test_harness/tests/test_data/cloud_tools_test_data.py,sha256=hsNvSSx9c6fgdymgJ50kXbRZHxGvWK2aWTKumTrikiQ,4868
|
|
96
96
|
codemie_test_harness/tests/test_data/codebase_tools_test_data.py,sha256=dpNKPtEZsBsjhnR3-pFBSkJRlExgjJ6fztK1spj04yI,3131
|
|
97
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
|
-
codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py,sha256=
|
|
103
|
-
codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py,sha256=
|
|
102
|
+
codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py,sha256=3uXaWnhncAWCqSBQN1-x0izIZLg6i0Kk45Qp6ROmTeU,35368
|
|
103
|
+
codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py,sha256=BjN4tIs5t1JNgIL0HvzHBm4a5_vrGz_S2GT2ylg4jZM,5971
|
|
104
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
|
|
@@ -132,8 +132,8 @@ codemie_test_harness/tests/test_data/files/test.yaml,sha256=3NDQyzwkRM5d6eCYMScN
|
|
|
132
132
|
codemie_test_harness/tests/test_data/git_tools_test_data.py,sha256=7U05vLqkh5uJ0l_KJeHis549id1Of99K0jCsWOb0nXM,8485
|
|
133
133
|
codemie_test_harness/tests/test_data/google_datasource_test_data.py,sha256=fhMJVTU0udINKtBQ750c_c279NzibGiZumnIaCPLtBo,511
|
|
134
134
|
codemie_test_harness/tests/test_data/index_test_data.py,sha256=jSJ7YSNisFADONRKSwkLUhuOLrSRe_fZisWdjflOjE4,996
|
|
135
|
-
codemie_test_harness/tests/test_data/integrations_test_data.py,sha256=
|
|
136
|
-
codemie_test_harness/tests/test_data/llm_test_data.py,sha256=
|
|
135
|
+
codemie_test_harness/tests/test_data/integrations_test_data.py,sha256=dPadoQCurmOtqhq5hcPe1hhuSZ6NYa4IZwdWMiMx2Tw,6599
|
|
136
|
+
codemie_test_harness/tests/test_data/llm_test_data.py,sha256=SJIBGtC8Ha7T0S7G9598PvHzzQIR6gg4HnNCtgYmLYw,2200
|
|
137
137
|
codemie_test_harness/tests/test_data/mcp_server_test_data.py,sha256=dNtuJm47-F0OV5fIHUpb1Ko6VQOECWx2XDBuLyxtDzo,7671
|
|
138
138
|
codemie_test_harness/tests/test_data/notification_tools_test_data.py,sha256=f5GSGGtcvoocE50jFZfBIMFLxPcFbaiVeYjgiyvaESs,828
|
|
139
139
|
codemie_test_harness/tests/test_data/open_api_tools_test_data.py,sha256=XhVzelRXgLXHF2iIvhI70SP6qHQjT7QW70S06dF6XJI,2480
|
|
@@ -144,7 +144,7 @@ codemie_test_harness/tests/test_data/pm_tools_test_data.py,sha256=ctPwLSJYy7xPg4
|
|
|
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
|
|
147
|
-
codemie_test_harness/tests/test_data/vcs_tools_test_data.py,sha256=
|
|
147
|
+
codemie_test_harness/tests/test_data/vcs_tools_test_data.py,sha256=zG3yrrUiLdnKmcXXDvZznzTa17-DgzHClGKiI0z0cWU,2381
|
|
148
148
|
codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_id.yaml,sha256=_cioQNq3icemob9u0i-hXkTy2nflzyP0Ce8FWiPG14M,265
|
|
149
149
|
codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_in_state.yaml,sha256=t_W95zD5bfdGf3F6p64-2qBHz7SkL_7mFT675uieWZg,209
|
|
150
150
|
codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_data_source.yaml,sha256=Vwx3HyrQkL8sWNtfwL6d0qiJhru6X3ojKBASAzJeY9w,252
|
|
@@ -207,9 +207,9 @@ codemie_test_harness/tests/ui/test_workflow_details.py,sha256=PkLMhvQSd3XOYZMj8Q
|
|
|
207
207
|
codemie_test_harness/tests/ui/test_workflow_executions_page.py,sha256=9GMFNKtIO3AN8bnaM8XIcoR79X09_vLTF4tbMJ-ebCw,11644
|
|
208
208
|
codemie_test_harness/tests/ui/test_workflow_templates.py,sha256=A6eaR-7M5VXoPlUJfKIAzqdxVquC1WnzwzMpOg74dwc,4558
|
|
209
209
|
codemie_test_harness/tests/ui/test_workflows.py,sha256=_UQT9soqxV68aqFt0V3KJ3iJFA55kzE891EJIER9kk8,3464
|
|
210
|
-
codemie_test_harness/tests/utils/__init__.py,sha256=
|
|
210
|
+
codemie_test_harness/tests/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
211
|
codemie_test_harness/tests/utils/assistant_utils.py,sha256=jy3dFF4ZiT22Wippl1a5jIEAAyJ71P0ss8AIHPefz6k,6511
|
|
212
|
-
codemie_test_harness/tests/utils/aws_parameters_store.py,sha256=
|
|
212
|
+
codemie_test_harness/tests/utils/aws_parameters_store.py,sha256=uwhvrk4qYYWLILS082SFAqQaGmhrW6aPmmJo-dPTN84,20637
|
|
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
|
|
@@ -222,12 +222,12 @@ codemie_test_harness/tests/utils/json_utils.py,sha256=PWO4Ixxgta_zkdq-8umcP9qwDS
|
|
|
222
222
|
codemie_test_harness/tests/utils/llm_utils.py,sha256=JPAlMYh-wQH4any5HWdpQOejCbhjqJCsztRU_fUq-SU,257
|
|
223
223
|
codemie_test_harness/tests/utils/logger_util.py,sha256=6Kca4pLxyTYnUgm2i3j19DdZSH6XUSGXPjHtExx33QU,828
|
|
224
224
|
codemie_test_harness/tests/utils/notification_utils.py,sha256=8HWgkTjcMDOoXq_8vzKVx8iSoVb4jSlx2_xJvRxa3V0,3480
|
|
225
|
-
codemie_test_harness/tests/utils/provider_utils.py,sha256=
|
|
225
|
+
codemie_test_harness/tests/utils/provider_utils.py,sha256=sgLLVv8j6fzVl6MNESlXTGsHa2WCZYTzlMJepcT3r7o,5117
|
|
226
226
|
codemie_test_harness/tests/utils/pytest_utils.py,sha256=k-mEjX2qpnh37sqKpJqYhZT6BV9974y_KaAhv8Xj9GI,284
|
|
227
227
|
codemie_test_harness/tests/utils/search_utils.py,sha256=SrXiB2d9wiI5ka9bgg0CD73GOX_1mqi2Hz5FBm5DsEU,1435
|
|
228
228
|
codemie_test_harness/tests/utils/similarity_check.py,sha256=1U66NGh6esISKABodtVobE2WnuFt0f6vcK3qUri6ZqU,1485
|
|
229
229
|
codemie_test_harness/tests/utils/user_utils.py,sha256=zJNrmL3Fb7iGuaVRobUMwJ2Og6NqEPcM_9lw60m18T8,242
|
|
230
|
-
codemie_test_harness/tests/utils/workflow_utils.py,sha256=
|
|
230
|
+
codemie_test_harness/tests/utils/workflow_utils.py,sha256=9y2C3r6pg2uVa4w2byoEJ0m0oH__Y3m1pcrnsHgHEnM,6002
|
|
231
231
|
codemie_test_harness/tests/utils/yaml_utils.py,sha256=y9fUf4u4G4SoCktPOwaC5x71iaDKhktbz_XUfI9kNis,1661
|
|
232
232
|
codemie_test_harness/tests/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
233
|
codemie_test_harness/tests/workflow/assistant_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -267,7 +267,7 @@ codemie_test_harness/tests/workflow/assistant_tools/servicenow/test_workflow_wit
|
|
|
267
267
|
codemie_test_harness/tests/workflow/assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
268
268
|
codemie_test_harness/tests/workflow/assistant_tools/vcs/workflow_with_assistant_vcs_tools.py,sha256=6mw0m4n74VZDFdlI8KFjXB5AyTwf6SxqSZal_3pmPa8,1020
|
|
269
269
|
codemie_test_harness/tests/workflow/config_validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
|
-
codemie_test_harness/tests/workflow/config_validation/test_config_validation.py,sha256=
|
|
270
|
+
codemie_test_harness/tests/workflow/config_validation/test_config_validation.py,sha256=Dm5WHovYufO2FSP_aUUPI8j-Jx3S7GolcDgUBTl29es,4005
|
|
271
271
|
codemie_test_harness/tests/workflow/direct_tools_calling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
272
272
|
codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
273
273
|
codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool.py,sha256=uWhdAnVqk-WrSB9QrHZyJLIQPvLhHayfEL1OZugU00A,8232
|
|
@@ -275,7 +275,7 @@ codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/te
|
|
|
275
275
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_test_plan_tools.py,sha256=UUSgyhE7GKAkyCQMUm7Y2VkQkiR7-Fr5robBpLvoH-M,2685
|
|
276
276
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_wiki_tools.py,sha256=FOQEqm0u4UvRAfjJFo2API-qySGy4sqKD-hwE1Lm6Js,2744
|
|
277
277
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py,sha256=4h3z3tUTqBLZPjDQCbnW2CkoGX0gEjZlDkYbLHSilZA,2799
|
|
278
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py,sha256=
|
|
278
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py,sha256=L6axcgk45OtFhmn9kinalmRv28CRu0YTuqfpYchuR88,3527
|
|
279
279
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_codebase_tools.py,sha256=Kul_o9d4KIPzWUhKNOv82A9S_8-Z0ALaTeO5AO2Ltzs,3821
|
|
280
280
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py,sha256=eIIHRovi_tNvINjOVYOQRB9uWIzfebwnDF4fWdx47Og,3899
|
|
281
281
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py,sha256=W1Q8fwfUzslnMQX7ObM8o1r5kx_GyZTjVGh-1979VNQ,2673
|
|
@@ -283,7 +283,7 @@ codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_noti
|
|
|
283
283
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py,sha256=9il7_0U3m8Ekvw5bCP0WQlJ-27RpKhViyqlrjqsS5_Y,2949
|
|
284
284
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_plugin_tools.py,sha256=dm36y1xpeN8Xs9eUAjcz-Dp71x669-sZqwO64V2Kk84,3946
|
|
285
285
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_project_management_tools.py,sha256=djhzTGSNWFUQJgPrKmkSuivXVff-cHlc1LF0vFsNHSM,3189
|
|
286
|
-
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_research_tools.py,sha256=
|
|
286
|
+
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_research_tools.py,sha256=VWpnEPrHLzJ8XSI9dT6nkbZPsfASCXyDd6uXPS_2K8g,2372
|
|
287
287
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_servicenow_tools.py,sha256=a3a4-3O0FaOFvN93kFNHiocLI-zPEuCaP3C-ov6lB5E,2185
|
|
288
288
|
codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_vcs_tools.py,sha256=8qKTiFvL0wNBpDv5mUalsYfPVCfq_eoTzQTQdMs5SOY,3005
|
|
289
289
|
codemie_test_harness/tests/workflow/test_workflows.py,sha256=haGPZqkV0PPBENN_pHc6x6gn84VdjWOrniuadFATKA0,1141
|
|
@@ -323,7 +323,7 @@ codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.
|
|
|
323
323
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=Cxe5Yuy9JE_IEsnQOThpVIZQqpfLuHfDkF6JwLngDc8,890
|
|
324
324
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
325
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py,sha256=tm0NvUf_UtzLPTYJWykYpsNoxoVs-Eh80guDmRwImwg,1106
|
|
326
|
-
codemie_test_harness-0.1.
|
|
327
|
-
codemie_test_harness-0.1.
|
|
328
|
-
codemie_test_harness-0.1.
|
|
329
|
-
codemie_test_harness-0.1.
|
|
326
|
+
codemie_test_harness-0.1.139.dist-info/METADATA,sha256=R95gOa5AsUmCJd27ebgIuDsYAyl2y0o1yHCB7mzSbE4,8998
|
|
327
|
+
codemie_test_harness-0.1.139.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
328
|
+
codemie_test_harness-0.1.139.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
|
|
329
|
+
codemie_test_harness-0.1.139.dist-info/RECORD,,
|
|
File without changes
|
{codemie_test_harness-0.1.137.dist-info → codemie_test_harness-0.1.139.dist-info}/entry_points.txt
RENAMED
|
File without changes
|