codemie-test-harness 0.1.222__py3-none-any.whl → 0.1.224__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/conftest.py +13 -3
- codemie_test_harness/tests/enums/model_types.py +1 -0
- codemie_test_harness/tests/test_data/llm_test_data.py +1 -0
- codemie_test_harness/tests/test_data/vendor_workflow_test_data.py +50 -0
- codemie_test_harness/tests/utils/vendor_utils.py +8 -8
- codemie_test_harness/tests/utils/vendor_workflow_utils.py +418 -0
- codemie_test_harness/tests/vendor/assistants/test_vendor_assistants.py +5 -5
- codemie_test_harness/tests/vendor/assistants/test_vendor_assistants_endpoints.py +53 -43
- codemie_test_harness/tests/vendor/workflows/__init__.py +1 -0
- codemie_test_harness/tests/vendor/workflows/test_vendor_workflow_endpoints.py +341 -0
- codemie_test_harness/tests/vendor/workflows/test_vendor_workflows.py +63 -0
- {codemie_test_harness-0.1.222.dist-info → codemie_test_harness-0.1.224.dist-info}/METADATA +2 -2
- {codemie_test_harness-0.1.222.dist-info → codemie_test_harness-0.1.224.dist-info}/RECORD +15 -10
- {codemie_test_harness-0.1.222.dist-info → codemie_test_harness-0.1.224.dist-info}/WHEEL +0 -0
- {codemie_test_harness-0.1.222.dist-info → codemie_test_harness-0.1.224.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: codemie-test-harness
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.224
|
|
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.224)
|
|
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-repeat (>=0.9.3,<0.10.0)
|
|
@@ -65,7 +65,7 @@ codemie_test_harness/tests/assistant/tools/servicenow/__init__.py,sha256=47DEQpj
|
|
|
65
65
|
codemie_test_harness/tests/assistant/tools/servicenow/test_servicenow_tools.py,sha256=aUjfZ4773WoQJjcHx3JqH5e8ckaKB-aIMO-OZWTm0Ek,888
|
|
66
66
|
codemie_test_harness/tests/assistant/tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
67
|
codemie_test_harness/tests/assistant/tools/vcs/test_assistant_with_vcs_tools.py,sha256=qOPr4XOh2rgUV2MXMxkRzRGkAKl9ViwQGCZ-dMEtscU,1145
|
|
68
|
-
codemie_test_harness/tests/conftest.py,sha256=
|
|
68
|
+
codemie_test_harness/tests/conftest.py,sha256=oFH8KXi67CR1sRchq71u-eTFOyHown9W1Bp-wuGwc5E,34463
|
|
69
69
|
codemie_test_harness/tests/conversations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
70
|
codemie_test_harness/tests/conversations/test_conversations_endpoints.py,sha256=HQ2nu9lXfRNkyJhA0rzar7Rmv6pMe-te0rFYAy-X5UA,4128
|
|
71
71
|
codemie_test_harness/tests/e2e/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -73,7 +73,7 @@ codemie_test_harness/tests/e2e/test_e2e.py,sha256=BjBzyCeZCSGE1iGhjdYKBo6pMwimZ2
|
|
|
73
73
|
codemie_test_harness/tests/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
74
|
codemie_test_harness/tests/enums/environment.py,sha256=p1qAX5kGZ83eZVZf1xE2OMaJ6Br8AWcudKrPQCY1Zms,3099
|
|
75
75
|
codemie_test_harness/tests/enums/integrations.py,sha256=L4sItzBjFBR65gMCebSYchADjwxmTtpEWQZvxd9aSnU,188
|
|
76
|
-
codemie_test_harness/tests/enums/model_types.py,sha256=
|
|
76
|
+
codemie_test_harness/tests/enums/model_types.py,sha256=Kc1uxjivCaHMdHex4SYde5wopD6GjDsr44db_K0KIPs,1358
|
|
77
77
|
codemie_test_harness/tests/enums/tools.py,sha256=y-FMN0K4jtG9vlZMnwqLqtuJyfIzFm3D548SGF-cUqw,6587
|
|
78
78
|
codemie_test_harness/tests/integrations/__init__.py,sha256=5vnZbxvYQ1Y91O8DJG3QfBHWcdYsMii59cMBzsvHBCg,237
|
|
79
79
|
codemie_test_harness/tests/integrations/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -157,7 +157,7 @@ codemie_test_harness/tests/test_data/google_datasource_test_data.py,sha256=9hO8K
|
|
|
157
157
|
codemie_test_harness/tests/test_data/index_test_data.py,sha256=VZJC_Fmko32EHaybUwCy0mWMiwAeUAAmhRa0Xt4oTHQ,1115
|
|
158
158
|
codemie_test_harness/tests/test_data/integrations_test_data.py,sha256=qfsJG2wmYPcZPZ5JpIJPqhnyTqLQlFEd4uOEzK4264A,38795
|
|
159
159
|
codemie_test_harness/tests/test_data/keycloak_tool_test_data.py,sha256=uF8YqHGgLpQVxKdpKXLe-7F-ipEGQiHHh28nZvvVGM8,1244
|
|
160
|
-
codemie_test_harness/tests/test_data/llm_test_data.py,sha256=
|
|
160
|
+
codemie_test_harness/tests/test_data/llm_test_data.py,sha256=NJvBLl-PlWFn_HzQ3yYckJ7FG5o2epGVzZ6jcgpuHcY,2595
|
|
161
161
|
codemie_test_harness/tests/test_data/mcp_server_test_data.py,sha256=m6PImS_J2gPNY5ijf9MG_eOX_LxJjTZ23AXQDgaK_Oc,7151
|
|
162
162
|
codemie_test_harness/tests/test_data/notification_tools_test_data.py,sha256=D7KLP-cyQljU2Io21CukphnzMadJ7VJ0FhXFdU3GfGk,794
|
|
163
163
|
codemie_test_harness/tests/test_data/open_api_tools_test_data.py,sha256=mvf0legyzLy1Ng-gqtQntR9HskFwVCDaLqPzDRXV8rM,3093
|
|
@@ -172,6 +172,7 @@ codemie_test_harness/tests/test_data/servicenow_tools_test_data.py,sha256=PKw9zE
|
|
|
172
172
|
codemie_test_harness/tests/test_data/vcs_tools_test_data.py,sha256=ZJdday96uOKOy_kPRBPp0w9JZbf0il7Y_hPfwRmUkuM,4518
|
|
173
173
|
codemie_test_harness/tests/test_data/vendor_endpoint_test_data.py,sha256=Fti3ZbpS3m06Heyh5AAcoAKZuimX709iZQFPhzKvrC4,1075
|
|
174
174
|
codemie_test_harness/tests/test_data/vendor_test_data.py,sha256=FFS35ikzMzSHShnfmdIme-WjueSjj0qBwa0OU6ooKfc,1409
|
|
175
|
+
codemie_test_harness/tests/test_data/vendor_workflow_test_data.py,sha256=hZX_GpIz0RIjSuqvgCh_Sv5zwk4-iatP1J-SIKCL8cg,1588
|
|
175
176
|
codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_id.yaml,sha256=_cioQNq3icemob9u0i-hXkTy2nflzyP0Ce8FWiPG14M,265
|
|
176
177
|
codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_in_state.yaml,sha256=t_W95zD5bfdGf3F6p64-2qBHz7SkL_7mFT675uieWZg,209
|
|
177
178
|
codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_data_source.yaml,sha256=Vwx3HyrQkL8sWNtfwL6d0qiJhru6X3ojKBASAzJeY9w,252
|
|
@@ -297,14 +298,18 @@ codemie_test_harness/tests/utils/pytest_utils.py,sha256=k-mEjX2qpnh37sqKpJqYhZT6
|
|
|
297
298
|
codemie_test_harness/tests/utils/search_utils.py,sha256=SrXiB2d9wiI5ka9bgg0CD73GOX_1mqi2Hz5FBm5DsEU,1435
|
|
298
299
|
codemie_test_harness/tests/utils/similarity_check.py,sha256=2URqvD3Ft7efwLmhh2iYVsXrYboP9f-_B_ekZmJn0ac,1527
|
|
299
300
|
codemie_test_harness/tests/utils/user_utils.py,sha256=zJNrmL3Fb7iGuaVRobUMwJ2Og6NqEPcM_9lw60m18T8,242
|
|
300
|
-
codemie_test_harness/tests/utils/vendor_utils.py,sha256=
|
|
301
|
+
codemie_test_harness/tests/utils/vendor_utils.py,sha256=976qSTUOBIwg0Rvnw_Zg5YP8gFAr41jbVMk0EvXzVSU,11055
|
|
302
|
+
codemie_test_harness/tests/utils/vendor_workflow_utils.py,sha256=97s7pz9fYRkztK4FrFNfV33ASANiE_C0QOyt8iMgACM,13595
|
|
301
303
|
codemie_test_harness/tests/utils/webhook_utils.py,sha256=YjyLwAqQjR12vYFOUmYhJCJIyZvKm4SvU-1oIjIYNqg,340
|
|
302
304
|
codemie_test_harness/tests/utils/workflow_utils.py,sha256=bHxPQkblRPF1fZp_AXI36elMFm14nzqGYoU5Eqz4MWY,11553
|
|
303
305
|
codemie_test_harness/tests/utils/yaml_utils.py,sha256=iIdEl-rUUh1LgzAmD_mjfftthhvlzXyCuA37yBoH0Gw,1617
|
|
304
306
|
codemie_test_harness/tests/vendor/__init__.py,sha256=7kcktgm5ZkmcVLRX2mTRhGzVzFpVR_rcgYUbhKe-3q0,71
|
|
305
307
|
codemie_test_harness/tests/vendor/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
|
-
codemie_test_harness/tests/vendor/assistants/test_vendor_assistants.py,sha256=
|
|
307
|
-
codemie_test_harness/tests/vendor/assistants/test_vendor_assistants_endpoints.py,sha256=
|
|
308
|
+
codemie_test_harness/tests/vendor/assistants/test_vendor_assistants.py,sha256=8ubDiB2YlCTuck8aD2MvgOhSWthfjEyZ8k8iqDqL5f8,1957
|
|
309
|
+
codemie_test_harness/tests/vendor/assistants/test_vendor_assistants_endpoints.py,sha256=XA9idTm6ZycoKCTGq31QpL_BeybgQa7dFC3RSqAPtec,13271
|
|
310
|
+
codemie_test_harness/tests/vendor/workflows/__init__.py,sha256=qcP6VHdlR6qbNhjrqRGHE5JReIj4CH0WGlMvpKgm1aM,38
|
|
311
|
+
codemie_test_harness/tests/vendor/workflows/test_vendor_workflow_endpoints.py,sha256=dkCmFPKj-sIVgbuaqQ2Ef7JBKUWGTftW9xZB3D1KCrU,11236
|
|
312
|
+
codemie_test_harness/tests/vendor/workflows/test_vendor_workflows.py,sha256=BVHWU9RN5Wn6XzXbRxo5Lod28GV7mPkbQSkErC-OUY4,1813
|
|
308
313
|
codemie_test_harness/tests/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
314
|
codemie_test_harness/tests/webhook/test_webhook_service.py,sha256=POmxQG0tpcNW9-yKQ62CcnQpUEFYlTOs0_4H9MijIHY,8127
|
|
310
315
|
codemie_test_harness/tests/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -412,7 +417,7 @@ codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.
|
|
|
412
417
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=D835gaRbCnB4va5mi9TdA_u9StSpGXQ_fgzwW0S2pwo,1173
|
|
413
418
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
414
419
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py,sha256=Se9imIiBYuJU78m1pLu0g4ZmHygKZjr6JjIWkGXTy1Q,1364
|
|
415
|
-
codemie_test_harness-0.1.
|
|
416
|
-
codemie_test_harness-0.1.
|
|
417
|
-
codemie_test_harness-0.1.
|
|
418
|
-
codemie_test_harness-0.1.
|
|
420
|
+
codemie_test_harness-0.1.224.dist-info/METADATA,sha256=KLYh0W0-VBL1mczrRSYQfDBmREphumnAb6AcTFvHKjE,27184
|
|
421
|
+
codemie_test_harness-0.1.224.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
422
|
+
codemie_test_harness-0.1.224.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
|
|
423
|
+
codemie_test_harness-0.1.224.dist-info/RECORD,,
|
|
File without changes
|
{codemie_test_harness-0.1.222.dist-info → codemie_test_harness-0.1.224.dist-info}/entry_points.txt
RENAMED
|
File without changes
|