codemie-test-harness 0.1.166__py3-none-any.whl → 0.1.168__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.

Files changed (30) hide show
  1. codemie_test_harness/tests/assistant/tools/mcp/test_single_assistant_dual_time_plugins.py +160 -0
  2. codemie_test_harness/tests/test_data/plugin_tools_test_data.py +33 -0
  3. codemie_test_harness/tests/ui/pageobject/base_page.py +24 -24
  4. codemie_test_harness/tests/ui/pageobject/components/__init__.py +2 -2
  5. codemie_test_harness/tests/ui/pageobject/components/execution_history_row.py +3 -3
  6. codemie_test_harness/tests/ui/pageobject/components/{header.py → menu.py} +57 -111
  7. codemie_test_harness/tests/ui/pageobject/components/pop_up.py +2 -2
  8. codemie_test_harness/tests/ui/pageobject/components/workflow_card.py +7 -10
  9. codemie_test_harness/tests/ui/pageobject/components/workflow_execution_history_item.py +9 -9
  10. codemie_test_harness/tests/ui/pageobject/components/workflow_execution_state.py +1 -1
  11. codemie_test_harness/tests/ui/pageobject/components/workflow_sidebar.py +16 -16
  12. codemie_test_harness/tests/ui/pageobject/workflows/base_workflow_form_page.py +32 -65
  13. codemie_test_harness/tests/ui/pageobject/workflows/create_workflow_page.py +4 -4
  14. codemie_test_harness/tests/ui/pageobject/workflows/edit_workflow_page.py +6 -4
  15. codemie_test_harness/tests/ui/pageobject/workflows/workflow_details_page.py +32 -61
  16. codemie_test_harness/tests/ui/pageobject/workflows/workflow_executions_page.py +17 -23
  17. codemie_test_harness/tests/ui/pageobject/workflows/workflow_template_details.py +5 -11
  18. codemie_test_harness/tests/ui/pageobject/workflows/workflow_templates_page.py +5 -2
  19. codemie_test_harness/tests/ui/pageobject/workflows/workflows_page.py +3 -5
  20. codemie_test_harness/tests/ui/workflows/__init__.py +0 -0
  21. codemie_test_harness/tests/ui/{test_create_workflow.py → workflows/test_create_workflow.py} +12 -33
  22. codemie_test_harness/tests/ui/{test_edit_workflow.py → workflows/test_edit_workflow.py} +14 -34
  23. codemie_test_harness/tests/ui/{test_workflow_details.py → workflows/test_workflow_details.py} +11 -11
  24. codemie_test_harness/tests/ui/{test_workflow_executions_page.py → workflows/test_workflow_executions_page.py} +0 -2
  25. codemie_test_harness/tests/ui/{test_workflow_templates.py → workflows/test_workflow_templates.py} +0 -2
  26. codemie_test_harness/tests/ui/{test_workflows.py → workflows/test_workflows.py} +8 -6
  27. {codemie_test_harness-0.1.166.dist-info → codemie_test_harness-0.1.168.dist-info}/METADATA +2 -2
  28. {codemie_test_harness-0.1.166.dist-info → codemie_test_harness-0.1.168.dist-info}/RECORD +30 -28
  29. {codemie_test_harness-0.1.166.dist-info → codemie_test_harness-0.1.168.dist-info}/WHEEL +0 -0
  30. {codemie_test_harness-0.1.166.dist-info → codemie_test_harness-0.1.168.dist-info}/entry_points.txt +0 -0
@@ -70,7 +70,7 @@ def test_workflow_details_page_elements_visibility(page, test_workflow):
70
70
  # Verify we are on the correct page
71
71
  workflow_details_page.should_be_on_workflow_details_page()
72
72
 
73
- # Verify header elements
73
+ # Verify menu elements
74
74
  workflow_details_page.should_have_header_elements_visible()
75
75
 
76
76
  # Verify workflow information
@@ -87,7 +87,7 @@ def test_workflow_details_page_elements_visibility(page, test_workflow):
87
87
  workflow_details_page.should_have_executions_tab_active()
88
88
 
89
89
  # Verify common components
90
- workflow_details_page.should_have_header_visible()
90
+ workflow_details_page.should_have_menu_visible()
91
91
  workflow_details_page.sidebar.should_be_visible()
92
92
 
93
93
 
@@ -210,6 +210,7 @@ def test_workflow_details_action_buttons(page, test_workflow):
210
210
  # This would depend on the actual implementation
211
211
 
212
212
 
213
+ @pytest.mark.skip(reason="Need to rewrite whole case")
213
214
  @pytest.mark.workflow_ui
214
215
  @pytest.mark.ui
215
216
  def test_workflow_details_navigation_buttons(page, test_workflow):
@@ -245,23 +246,23 @@ def test_workflow_details_sidebar_functionality(page, test_workflow):
245
246
 
246
247
  @pytest.mark.workflow_ui
247
248
  @pytest.mark.ui
248
- def test_workflow_details_header_navigation(page, test_workflow):
249
- """Test header navigation from Workflow Details page."""
249
+ def test_workflow_details_menu_navigation(page, test_workflow):
250
+ """Test menu navigation from Workflow Details page."""
250
251
  workflow_details_page = WorkflowDetailsPage(page)
251
252
  workflow_details_page.navigate_to(test_workflow.id)
252
253
 
253
- # Test header component visibility
254
- workflow_details_page.should_have_header_visible()
255
- workflow_details_page.header.should_be_visible()
256
- workflow_details_page.header.should_have_complete_navigation_structure()
254
+ # Test menu component visibility
255
+ workflow_details_page.should_have_menu_visible()
256
+ workflow_details_page.menu.should_be_visible()
257
+ workflow_details_page.menu.should_have_complete_navigation_structure()
257
258
 
258
259
  # Test navigation to other sections
259
- workflow_details_page.header.navigate_to_assistants()
260
+ workflow_details_page.menu.navigate_to_assistants()
260
261
  workflow_details_page.should_have_url_containing("#/assistants")
261
262
 
262
263
  # Navigate back to workflow details
263
264
  workflow_details_page.navigate_to(test_workflow.id)
264
- workflow_details_page.header.navigate_to_workflows()
265
+ workflow_details_page.menu.navigate_to_workflows()
265
266
  workflow_details_page.should_have_url_containing("#/workflows")
266
267
 
267
268
 
@@ -363,7 +364,6 @@ def test_configuration_tab_content(page, test_workflow):
363
364
  workflow_details_page.should_have_workflow_description(test_workflow.description)
364
365
 
365
366
  # Verify Overview sidebar content
366
- workflow_details_page.should_have_mode_value("Sequential")
367
367
  workflow_details_page.should_have_project_value(PROJECT)
368
368
 
369
369
  # Verify Workflow ID
@@ -125,8 +125,6 @@ def test_execution_history_sidebar_content(page, executions):
125
125
 
126
126
  executions_page.should_have_execution_history_items()
127
127
 
128
- executions_page.should_have_active_execution_item()
129
-
130
128
 
131
129
  @pytest.mark.workflow_ui
132
130
  @pytest.mark.workflow_execution_ui
@@ -36,8 +36,6 @@ def test_templates_visible(page, predefined_templates):
36
36
  for i in range(len(templates)):
37
37
  expected_name = templates[i]["name"]
38
38
  expected_description = templates[i]["description"]
39
- if len(expected_description) > 1500:
40
- expected_description = f"{expected_description[:1500]}\n..."
41
39
  trimmed_description = templates[i]["description"][:70]
42
40
 
43
41
  workflow_templates_page.should_have_title_description(
@@ -2,6 +2,8 @@ import pytest
2
2
  from codemie_test_harness.tests.ui.pageobject.workflows.workflows_page import (
3
3
  WorkflowsPage,
4
4
  )
5
+ from codemie_test_harness.tests.utils.base_utils import get_random_name
6
+ from tests import TEST_USER
5
7
 
6
8
 
7
9
  @pytest.mark.workflow_ui
@@ -37,23 +39,23 @@ def test_workflow_search_functionality(page):
37
39
  workflow_page = WorkflowsPage(page)
38
40
  workflow_page.navigate_to()
39
41
  workflow_page.sidebar.navigate_to_all_workflows()
40
- workflow_page.search_workflows("basic")
42
+ workflow_page.search_workflows("123")
41
43
  workflow_page.should_see_workflow_cards()
42
44
  workflow_page.should_not_see_new_release_popup()
43
45
 
44
46
 
45
47
  @pytest.mark.workflow_ui
46
48
  @pytest.mark.ui
47
- def test_workflow_card_by_name(page):
49
+ def test_workflow_card_by_name(page, workflow_with_virtual_assistant):
48
50
  """Test getting and interacting with a specific workflow card."""
49
- workflow_name = "basicWfcx9"
51
+ workflow = workflow_with_virtual_assistant(get_random_name())
50
52
 
51
53
  workflow_page = WorkflowsPage(page)
52
54
  workflow_page.navigate_to()
53
55
  workflow_page.sidebar.navigate_to_all_workflows()
54
- workflow_page.should_see_workflow_card(workflow_name)
55
- workflow_page.should_see_workflow_author(workflow_name, "Dmytro Adamtsev")
56
- workflow_page.should_see_shared_workflow(workflow_name)
56
+ workflow_page.should_see_workflow_card(workflow.name)
57
+ workflow_page.should_see_workflow_author(workflow.name, TEST_USER)
58
+ workflow_page.should_see_shared_workflow(workflow.name)
57
59
 
58
60
 
59
61
  @pytest.mark.workflow_ui
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: codemie-test-harness
3
- Version: 0.1.166
3
+ Version: 0.1.168
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.166)
16
+ Requires-Dist: codemie-sdk-python (==0.1.168)
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)
@@ -42,6 +42,7 @@ codemie_test_harness/tests/assistant/tools/git/test_assistant_with_git_tools.py,
42
42
  codemie_test_harness/tests/assistant/tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
43
  codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py,sha256=nf8j8d5L9hXriqzh1o1b1IUclEW5jY-s1YHKovnWMh0,2642
44
44
  codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py,sha256=6G07SddfjZ0ilnJVSeS3yK-OSge9224I-6BQhbQxvZo,1386
45
+ codemie_test_harness/tests/assistant/tools/mcp/test_single_assistant_dual_time_plugins.py,sha256=_rBXI-45DZyFAlaTfv_3LkIc7mS8RAsfE2En3aWIpwY,4897
45
46
  codemie_test_harness/tests/assistant/tools/notification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
47
  codemie_test_harness/tests/assistant/tools/notification/test_assistant_notification_tools.py,sha256=0HrrCwwwU0U_2qrJPeURmqetOGt2FuBLoCxLEHzXV1k,2651
47
48
  codemie_test_harness/tests/assistant/tools/openapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -150,7 +151,7 @@ codemie_test_harness/tests/test_data/notification_tools_test_data.py,sha256=D7KL
150
151
  codemie_test_harness/tests/test_data/open_api_tools_test_data.py,sha256=XhVzelRXgLXHF2iIvhI70SP6qHQjT7QW70S06dF6XJI,2480
151
152
  codemie_test_harness/tests/test_data/openapi.json,sha256=X4uqtfjpTUuMifefQRf8mHI1k8pspp8-L0rpJlhLOI4,10459
152
153
  codemie_test_harness/tests/test_data/output_schema_test_data.py,sha256=4l7AvXbMl9hIvoFxu1LPPSGz9hb5Uz2_is4zTm77ARY,261
153
- codemie_test_harness/tests/test_data/plugin_tools_test_data.py,sha256=8sb80WiFdi2WWBWw5OWCR56HW6K1y062bWFiLOKeSU0,2430
154
+ codemie_test_harness/tests/test_data/plugin_tools_test_data.py,sha256=bVamztyQ4bAVo1CRSrtu6f5H-gkjhAN2nq5Jbc0erqM,4168
154
155
  codemie_test_harness/tests/test_data/pm_tools_test_data.py,sha256=ctPwLSJYy7xPg4B-uwAAhRwIogdxTgBn-PPY2rN0llc,3248
155
156
  codemie_test_harness/tests/test_data/project_management_test_data.py,sha256=Sd5MEO0hnUeyF-WIIGW4qEAHR5hvhJcs0DE1ytqdveM,1692
156
157
  codemie_test_harness/tests/test_data/report_portal_tools_test_data.py,sha256=P3Z1B1-iNxXAcMIFlb9robhHQSXQtzSRUz59ivvTrG8,13646
@@ -193,32 +194,33 @@ codemie_test_harness/tests/ui/conftest.py,sha256=1b8s--q2sAXjqHZKFi075Yqpq-fKLXO
193
194
  codemie_test_harness/tests/ui/pageobject/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
195
  codemie_test_harness/tests/ui/pageobject/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
196
  codemie_test_harness/tests/ui/pageobject/assistants/assistants_page.py,sha256=wCg1jLVUl02szz_FGostVaOGe-QFzkE7ClBtD1HOHgg,6038
196
- codemie_test_harness/tests/ui/pageobject/base_page.py,sha256=3-Syytm3Ok3XQa-BoYh197j_U9C9WcrIWCvpiN9-RbE,7519
197
- codemie_test_harness/tests/ui/pageobject/components/__init__.py,sha256=dmpCrOUTRRL3ADWcJtKBiEnIneRilvhHX86sW73m7PI,583
198
- codemie_test_harness/tests/ui/pageobject/components/execution_history_row.py,sha256=86yU0TeuChO6T_BKlPAFAKtOW_l1PpWdy3Opiz2K-do,6493
199
- codemie_test_harness/tests/ui/pageobject/components/header.py,sha256=OCug-T3LKF5qHumXXx02UzhO1pwkQcLbbhGLkm7y0oY,12016
200
- codemie_test_harness/tests/ui/pageobject/components/pop_up.py,sha256=HIc1hI5WMLwL_PaZ4nc2DWCce3qTsscpo8a8ma2I_YE,3470
201
- codemie_test_harness/tests/ui/pageobject/components/workflow_card.py,sha256=zE8pYb9TUXYTwrdhsIk8e-lwuYQMDlzdlAbcaYriazs,6792
202
- codemie_test_harness/tests/ui/pageobject/components/workflow_execution_history_item.py,sha256=YGCEEvW-XhUelFeLp0BXLlVioKw-GM2bVhDU0KeE8l0,7876
203
- codemie_test_harness/tests/ui/pageobject/components/workflow_execution_state.py,sha256=DH5XGoXY0Sf_parKsWs8XSw4G0WbWhdnOxRk93MUkXs,13836
204
- codemie_test_harness/tests/ui/pageobject/components/workflow_sidebar.py,sha256=UDfYW6J6RMG-jTbK2PSNXkOSra9g5VeGr4SeJET7XMo,17142
197
+ codemie_test_harness/tests/ui/pageobject/base_page.py,sha256=a4jCnb633jyax2Cws4kJirCO2Y2eqHI_DnPT5XOFK2I,7471
198
+ codemie_test_harness/tests/ui/pageobject/components/__init__.py,sha256=6scUFCL2StHbKIoNgGGZdpeDZUwbCrKIH7hwaskAB4E,577
199
+ codemie_test_harness/tests/ui/pageobject/components/execution_history_row.py,sha256=aGHc5AOpGR0tlfmLQfk8272TN6TWiuiXHUcg6PtB1Iw,6499
200
+ codemie_test_harness/tests/ui/pageobject/components/menu.py,sha256=llTWAbJHldo1-wY86k_2Dvs8iSEmMWzrw26AhQJ1kis,10501
201
+ codemie_test_harness/tests/ui/pageobject/components/pop_up.py,sha256=DfdQfLZp_We8K9rNyLXtJqy3vk8BxEnp32h9dTThJUM,3466
202
+ codemie_test_harness/tests/ui/pageobject/components/workflow_card.py,sha256=8M4JKYCI46_-0EosFBgWfFuD3-_AH8jVIhSRJCQqamQ,6712
203
+ codemie_test_harness/tests/ui/pageobject/components/workflow_execution_history_item.py,sha256=wSl4ELoEAmlgrh-NiGNfAfFZtnDvenszir7ZoIcmgt0,7884
204
+ codemie_test_harness/tests/ui/pageobject/components/workflow_execution_state.py,sha256=IWir8fP-7oc9t17Rjs6mHCNCxfQfmdfbFY2SsNxZaE4,13837
205
+ codemie_test_harness/tests/ui/pageobject/components/workflow_sidebar.py,sha256=9rGoopJShDtASejDA1L8yL6TfRvGHD_5yNXtDKcKzoQ,17158
205
206
  codemie_test_harness/tests/ui/pageobject/components/workflow_state_card.py,sha256=V7V1p3FNPrwVFM0CjZeg0MUkW9bGoF8UP5DuuH-r4gU,11548
206
207
  codemie_test_harness/tests/ui/pageobject/login_page.py,sha256=cs0nYtvYykXfli9vYKWPpIWOEQbksUDUGgq03hulfSg,3062
207
208
  codemie_test_harness/tests/ui/pageobject/workflows/__init__.py,sha256=UaVz3N_M1qG3EetktyQVM1j03_6XNEmGgyO2W5clLoo,519
208
- codemie_test_harness/tests/ui/pageobject/workflows/base_workflow_form_page.py,sha256=qMx_XSMaAvnPaKYACZREof-EY3Ifk-jA7eNgs6Yod5o,16587
209
- codemie_test_harness/tests/ui/pageobject/workflows/create_workflow_page.py,sha256=ZLVkByCA_O314ZukWQIRtO2iUgBZKq1-tgghJ-IpMM0,3889
210
- codemie_test_harness/tests/ui/pageobject/workflows/edit_workflow_page.py,sha256=r124W2bAN1lZYuCta62pTyi-Q5a-KowffyyzBZnDqrs,9977
211
- codemie_test_harness/tests/ui/pageobject/workflows/workflow_details_page.py,sha256=2Iois05IGG06BO1nMU0quUrtKi2xq7FaEPCrui6WuiQ,24251
212
- codemie_test_harness/tests/ui/pageobject/workflows/workflow_executions_page.py,sha256=i7SwVYXvy1FmG42MTM1qtO-AY1HGtp_tzAMugeUoRe0,20915
213
- codemie_test_harness/tests/ui/pageobject/workflows/workflow_template_details.py,sha256=CebzrHHX8xW_2y96tO60bH4KXjoOuOPqo4Y8r6k7qW0,3786
214
- codemie_test_harness/tests/ui/pageobject/workflows/workflow_templates_page.py,sha256=m7H3ZbNmBKW6DNizENcVdPd5FCVDKeLlcZI3yQhoKZk,2550
215
- codemie_test_harness/tests/ui/pageobject/workflows/workflows_page.py,sha256=8Yuu245PzqzBu0MewMr9_xXI-9IC2DFNZE-ObxQJN7w,11248
216
- codemie_test_harness/tests/ui/test_create_workflow.py,sha256=rB0N2B3G6HbbIxiDjO_XDE9d2uTb7Bv0rMvLAzZuK_A,11264
217
- codemie_test_harness/tests/ui/test_edit_workflow.py,sha256=i6mVT7ZutYDmHdba6JQU6RXU4bRP1_Sr1gYuFVaCIrI,13676
218
- codemie_test_harness/tests/ui/test_workflow_details.py,sha256=eEFjd0GY6YsYi67Pngva2S3DMqBqzcd0_HtuWrYrGn8,15420
219
- codemie_test_harness/tests/ui/test_workflow_executions_page.py,sha256=DLvBnWNkRJTtJo4QgbfpklJdG9oyhi7gxgLJWVuDR2s,12724
220
- codemie_test_harness/tests/ui/test_workflow_templates.py,sha256=pVuF98d3eEfinb5jpkTr4ZwuDl6IBMAFQKdPYfupoUI,4798
221
- codemie_test_harness/tests/ui/test_workflows.py,sha256=a2VY8BAsw3Po7e10r4g7S798GhpA4KYh2ZjnYEhU1PY,3664
209
+ codemie_test_harness/tests/ui/pageobject/workflows/base_workflow_form_page.py,sha256=zkHtUIqRq6By5vKrLMoOmCCFwDlmhUUZsPruummftSw,14912
210
+ codemie_test_harness/tests/ui/pageobject/workflows/create_workflow_page.py,sha256=Z7965E7Evyu_GNSdFuheFAUlYjH8b_jm4jDLsAnhEow,3881
211
+ codemie_test_harness/tests/ui/pageobject/workflows/edit_workflow_page.py,sha256=ImVM33A9nj9P4skXSOp6TuHn7Hj2wlm00r4pLJcTjn0,9997
212
+ codemie_test_harness/tests/ui/pageobject/workflows/workflow_details_page.py,sha256=3_j3rhQvlFtRkvXlcrul0AZoJi6kinEOO1ED3Vl0hI4,23345
213
+ codemie_test_harness/tests/ui/pageobject/workflows/workflow_executions_page.py,sha256=Rxi5CbitoTRiMBW2rURoA590bSqF7RcGlkHsRqsGEeg,20494
214
+ codemie_test_harness/tests/ui/pageobject/workflows/workflow_template_details.py,sha256=6Su0yLA8wDybCPVE2WFhV6l6r_38aYaRY0mEYnLHlYg,3556
215
+ codemie_test_harness/tests/ui/pageobject/workflows/workflow_templates_page.py,sha256=J5jxdZ2aQ9k15ghyRKYACxX2F9NiR6dXYBw0EaYlaN0,2645
216
+ codemie_test_harness/tests/ui/pageobject/workflows/workflows_page.py,sha256=yqdaSTA4aUeD-8A9Or0OgJZhMr2tDvDWWP_f4uPL5dw,11186
217
+ codemie_test_harness/tests/ui/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
+ codemie_test_harness/tests/ui/workflows/test_create_workflow.py,sha256=zX_6-pcYGCLiU6FUAvP-uo3jXy0PEEPBc_eqbP0FLV0,10522
219
+ codemie_test_harness/tests/ui/workflows/test_edit_workflow.py,sha256=RQIV5fSd3xv3tdGidpF8mMwkoHJ57Xn1HzeXnFq4eB0,12913
220
+ codemie_test_harness/tests/ui/workflows/test_workflow_details.py,sha256=PCEiclg1o_EfEbWLs7zAtvGmqwceoOJfb3Y-_sTjpqA,15392
221
+ codemie_test_harness/tests/ui/workflows/test_workflow_executions_page.py,sha256=4E-dPJrXSMiBiE9ZVHW4Ln6H121KbtEUa-vF1KXPGyU,12667
222
+ codemie_test_harness/tests/ui/workflows/test_workflow_templates.py,sha256=qDHv5z8NrBGsKx0tiK9aft_M9-98k7TY1OSm1FKPV9s,4680
223
+ codemie_test_harness/tests/ui/workflows/test_workflows.py,sha256=-tEYwIze1HNztzhx_yJy9xcwHLAnSZj_vU4UzlwUBfg,3820
222
224
  codemie_test_harness/tests/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
225
  codemie_test_harness/tests/utils/assistant_utils.py,sha256=jy3dFF4ZiT22Wippl1a5jIEAAyJ71P0ss8AIHPefz6k,6511
224
226
  codemie_test_harness/tests/utils/aws_parameters_store.py,sha256=YAVpvwElkKZJZvzSVxtOue1Gjs-kvSBS2y5QvIlz484,3267
@@ -350,7 +352,7 @@ codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.
350
352
  codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=vq6tucNBxiNIQSmIj_pYiiPm0lipU9X3kzeCd6xEbRM,966
351
353
  codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
352
354
  codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py,sha256=uD2qs361j6Egp4UumfoQ4gC24-NioXfiW0IF53N9hVA,1175
353
- codemie_test_harness-0.1.166.dist-info/METADATA,sha256=PVBlFSNDf9gbwIdlbXPt9qHtl2u6lK749GZJJiJjC5g,8998
354
- codemie_test_harness-0.1.166.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
355
- codemie_test_harness-0.1.166.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
356
- codemie_test_harness-0.1.166.dist-info/RECORD,,
355
+ codemie_test_harness-0.1.168.dist-info/METADATA,sha256=1XRD5UokSB8bPu0xnZXqhAmqbe40bCt7chx0L1kcx1g,8998
356
+ codemie_test_harness-0.1.168.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
357
+ codemie_test_harness-0.1.168.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
358
+ codemie_test_harness-0.1.168.dist-info/RECORD,,