codemie-test-harness 0.1.156__py3-none-any.whl → 0.1.157__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 (121) hide show
  1. codemie_test_harness/tests/assistant/datasource/test_code_datasource.py +6 -0
  2. codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py +14 -2
  3. codemie_test_harness/tests/assistant/datasource/test_file_indexing.py +10 -0
  4. codemie_test_harness/tests/assistant/datasource/test_google_datasource.py +6 -0
  5. codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py +18 -2
  6. codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool.py +10 -0
  7. codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_kit.py +10 -0
  8. codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_with_datasource.py +10 -0
  9. codemie_test_harness/tests/assistant/test_assistants.py +24 -2
  10. codemie_test_harness/tests/assistant/tools/access_management/test_keycloak_tool.py +2 -0
  11. codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_test_plan_tools.py +4 -0
  12. codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_wiki_tools.py +4 -0
  13. codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_work_item_tools.py +4 -0
  14. codemie_test_harness/tests/assistant/tools/cloud/test_cloud_tools.py +2 -0
  15. codemie_test_harness/tests/assistant/tools/codebase/test_codebase_tools.py +3 -0
  16. codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py +8 -4
  17. codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py +9 -1
  18. codemie_test_harness/tests/assistant/tools/git/test_assistant_with_git_tools.py +14 -0
  19. codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py +8 -6
  20. codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py +8 -6
  21. codemie_test_harness/tests/assistant/tools/notification/test_assistant_notification_tools.py +6 -0
  22. codemie_test_harness/tests/assistant/tools/openapi/test_assistant_with_open_api_tools.py +6 -4
  23. codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_development_plugin.py +4 -1
  24. codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py +6 -2
  25. codemie_test_harness/tests/assistant/tools/project_management/test_assistant_pm_tools.py +17 -0
  26. codemie_test_harness/tests/assistant/tools/research/test_assistant_research_tools.py +4 -0
  27. codemie_test_harness/tests/assistant/tools/servicenow/test_servicenow_tools.py +2 -0
  28. codemie_test_harness/tests/assistant/tools/vcs/test_assistant_with_vcs_tools.py +3 -1
  29. codemie_test_harness/tests/conversations/test_conversations_endpoints.py +10 -0
  30. codemie_test_harness/tests/e2e/test_e2e.py +24 -8
  31. codemie_test_harness/tests/integrations/project/test_default_integrations.py +41 -4
  32. codemie_test_harness/tests/integrations/project/test_project_integrations.py +23 -9
  33. codemie_test_harness/tests/integrations/user/test_default_integrations.py +40 -4
  34. codemie_test_harness/tests/integrations/user/test_user_integrations.py +26 -12
  35. codemie_test_harness/tests/llm/assistants/test_llm.py +8 -0
  36. codemie_test_harness/tests/providers/test_providers_endpoints.py +11 -0
  37. codemie_test_harness/tests/search/test_search_assistant.py +2 -0
  38. codemie_test_harness/tests/search/test_search_datasource.py +10 -0
  39. codemie_test_harness/tests/search/test_search_integration.py +6 -0
  40. codemie_test_harness/tests/search/test_search_workflow.py +2 -0
  41. codemie_test_harness/tests/test_data/cloud_tools_test_data.py +18 -10
  42. codemie_test_harness/tests/test_data/codebase_tools_test_data.py +6 -2
  43. codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py +18 -10
  44. codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py +6 -2
  45. codemie_test_harness/tests/test_data/direct_tools/notification_tools_test_data.py +9 -5
  46. codemie_test_harness/tests/test_data/direct_tools/project_management_tools_test_data.py +6 -2
  47. codemie_test_harness/tests/test_data/direct_tools/vcs_tools_test_data.py +6 -2
  48. codemie_test_harness/tests/test_data/integrations_test_data.py +185 -65
  49. codemie_test_harness/tests/test_data/project_management_test_data.py +10 -4
  50. codemie_test_harness/tests/test_data/vcs_tools_test_data.py +8 -2
  51. codemie_test_harness/tests/ui/test_create_workflow.py +13 -0
  52. codemie_test_harness/tests/ui/test_edit_workflow.py +16 -0
  53. codemie_test_harness/tests/ui/test_workflow_details.py +17 -0
  54. codemie_test_harness/tests/ui/test_workflow_executions_page.py +36 -0
  55. codemie_test_harness/tests/ui/test_workflow_templates.py +8 -0
  56. codemie_test_harness/tests/ui/test_workflows.py +8 -0
  57. codemie_test_harness/tests/workflow/assistant_tools/access_management/test_workflow_with_assistant_with_keycloak_tool.py +3 -0
  58. codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py +6 -0
  59. codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_wiki_tools.py +6 -0
  60. codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_work_item_tools.py +6 -0
  61. codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py +3 -0
  62. codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py +5 -0
  63. codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py +6 -0
  64. codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool.py +20 -0
  65. codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +20 -0
  66. codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +25 -0
  67. codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py +15 -0
  68. codemie_test_harness/tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py +21 -0
  69. codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py +9 -3
  70. codemie_test_harness/tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py +8 -0
  71. codemie_test_harness/tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py +3 -0
  72. codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_development_plugin.py +6 -2
  73. codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_plugin_and_mcp_servers.py +8 -2
  74. codemie_test_harness/tests/workflow/assistant_tools/project_management/test_workflow_with_assistant_pm_tools.py +3 -0
  75. codemie_test_harness/tests/workflow/assistant_tools/research/test_workflow_with_assistant_research_tools.py +6 -0
  76. codemie_test_harness/tests/workflow/assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +3 -0
  77. codemie_test_harness/tests/workflow/assistant_tools/vcs/workflow_with_assistant_vcs_tools.py +3 -0
  78. codemie_test_harness/tests/workflow/config_validation/test_config_validation.py +4 -3
  79. codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool.py +17 -2
  80. codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool_kit.py +15 -0
  81. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_access_management_tool.py +9 -0
  82. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_test_plan_tools.py +9 -0
  83. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_wiki_tools.py +9 -0
  84. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py +9 -0
  85. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py +9 -0
  86. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_codebase_tools.py +6 -0
  87. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py +9 -0
  88. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py +9 -0
  89. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_notification_tools.py +3 -0
  90. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py +9 -0
  91. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_plugin_tools.py +12 -4
  92. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_project_management_tools.py +9 -0
  93. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_research_tools.py +9 -0
  94. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_servicenow_tools.py +9 -0
  95. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_vcs_tools.py +3 -0
  96. codemie_test_harness/tests/workflow/test_workflows.py +1 -0
  97. codemie_test_harness/tests/workflow/virtual_assistant_tools/access_management/test_workflow_with_keycloak_tool.py +3 -0
  98. codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_test_plan_tools.py +6 -0
  99. codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_wiki_tools.py +6 -0
  100. codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_work_item_tools.py +6 -0
  101. codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py +3 -0
  102. codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py +5 -0
  103. codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py +6 -0
  104. codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool.py +20 -0
  105. codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +20 -0
  106. codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +25 -0
  107. codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py +15 -0
  108. codemie_test_harness/tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py +21 -0
  109. codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py +12 -6
  110. codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py +8 -0
  111. codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py +6 -3
  112. codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_development_plugin.py +6 -2
  113. codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_plugin_and_mcp_servers.py +8 -2
  114. codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/test_workflow_with_project_management_tools.py +3 -0
  115. codemie_test_harness/tests/workflow/virtual_assistant_tools/research/test_workflow_with_research_tools.py +6 -0
  116. codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +3 -0
  117. codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py +3 -0
  118. {codemie_test_harness-0.1.156.dist-info → codemie_test_harness-0.1.157.dist-info}/METADATA +2 -2
  119. {codemie_test_harness-0.1.156.dist-info → codemie_test_harness-0.1.157.dist-info}/RECORD +121 -121
  120. {codemie_test_harness-0.1.156.dist-info → codemie_test_harness-0.1.157.dist-info}/WHEEL +0 -0
  121. {codemie_test_harness-0.1.156.dist-info → codemie_test_harness-0.1.157.dist-info}/entry_points.txt +0 -0
@@ -13,6 +13,9 @@ from codemie_test_harness.tests.test_data.git_tools_test_data import (
13
13
  from codemie_test_harness.tests.utils.base_utils import get_random_name, to_camel_case
14
14
 
15
15
 
16
+ @pytest.mark.workflow
17
+ @pytest.mark.virtual_workflow
18
+ @pytest.mark.gitlab
16
19
  @pytest.mark.regression
17
20
  @pytest.mark.parametrize(
18
21
  "toolkit,tool_name,prompt,expected_response",
@@ -45,6 +48,9 @@ def test_workflow_with_list_branch_set_active_branch_tools(
45
48
  similarity_check.check_similarity(response, expected_response)
46
49
 
47
50
 
51
+ @pytest.mark.workflow
52
+ @pytest.mark.virtual_workflow
53
+ @pytest.mark.gitlab
48
54
  @pytest.mark.regression
49
55
  @pytest.mark.parametrize(
50
56
  "toolkit,tool_name,prompt_template,expected_template",
@@ -92,6 +98,9 @@ def test_workflow_with_create_branch_tool(
92
98
  git_utils.delete_branch(name)
93
99
 
94
100
 
101
+ @pytest.mark.workflow
102
+ @pytest.mark.virtual_workflow
103
+ @pytest.mark.gitlab
95
104
  @pytest.mark.regression
96
105
  @pytest.mark.parametrize(
97
106
  "toolkit,tool_name,prompt_template,expected_template,expected_content_template",
@@ -141,6 +150,9 @@ def test_workflow_with_create_file_tool(
141
150
  git_utils.delete_file(file_name, "main")
142
151
 
143
152
 
153
+ @pytest.mark.workflow
154
+ @pytest.mark.virtual_workflow
155
+ @pytest.mark.gitlab
144
156
  @pytest.mark.regression
145
157
  @pytest.mark.parametrize(
146
158
  "toolkit,tool_name,prompt_template,expected_template",
@@ -186,6 +198,9 @@ def test_workflow_with_create_merge_request_tool(
186
198
  git_utils.delete_branch(source_branch)
187
199
 
188
200
 
201
+ @pytest.mark.workflow
202
+ @pytest.mark.virtual_workflow
203
+ @pytest.mark.gitlab
189
204
  @pytest.mark.regression
190
205
  @pytest.mark.parametrize(
191
206
  "toolkit,tool_name,prompt_template,expected_template,file_content_template",
@@ -250,6 +265,9 @@ def test_workflow_with_delete_file_tool(
250
265
  git_utils.delete_file(file_name, "main")
251
266
 
252
267
 
268
+ @pytest.mark.workflow
269
+ @pytest.mark.virtual_workflow
270
+ @pytest.mark.gitlab
253
271
  @pytest.mark.regression
254
272
  @pytest.mark.parametrize(
255
273
  "toolkit,tool_name,create_mr_prompt_template,create_mr_expected_template,get_mr_changes_prompt_template,get_mr_changes_expected_template",
@@ -316,6 +334,9 @@ def test_workflow_with_get_merge_request_changes_tool(
316
334
  git_utils.delete_branch(source_branch)
317
335
 
318
336
 
337
+ @pytest.mark.workflow
338
+ @pytest.mark.virtual_workflow
339
+ @pytest.mark.gitlab
319
340
  @pytest.mark.regression
320
341
  @pytest.mark.parametrize(
321
342
  "toolkit,tool_name,create_prompt_template,create_expected_template,created_content_template,update_prompt_template,update_expected_template,updated_content_template",
@@ -17,8 +17,10 @@ from codemie_test_harness.tests.test_data.mcp_server_test_data import (
17
17
  from codemie_test_harness.tests.utils.base_utils import get_random_name
18
18
 
19
19
 
20
- @pytest.mark.regression
20
+ @pytest.mark.workflow
21
+ @pytest.mark.virtual_workflow
21
22
  @pytest.mark.mcp
23
+ @pytest.mark.regression
22
24
  @pytest.mark.testcase("EPMCDME-6419")
23
25
  @pytest.mark.skipif(
24
26
  os.getenv("ENV") == "local", reason="Skipping this test on local environment"
@@ -44,17 +46,19 @@ def test_workflow_with_time_mcp_server(
44
46
  similarity_check.check_similarity(response, time_expected_response)
45
47
 
46
48
 
47
- @pytest.mark.regression
49
+ @pytest.mark.workflow
50
+ @pytest.mark.virtual_workflow
48
51
  @pytest.mark.mcp
52
+ @pytest.mark.regression
49
53
  @pytest.mark.testcase("EPMCDME-6419")
54
+ @pytest.mark.skipif(
55
+ os.getenv("ENV") == "local", reason="Skipping this test on local environment"
56
+ )
50
57
  @pytest.mark.parametrize(
51
58
  "command, expected_answer",
52
59
  cli_mcp_server_test_data,
53
60
  ids=[f"{row[0]}" for row in cli_mcp_server_test_data],
54
61
  )
55
- @pytest.mark.skipif(
56
- os.getenv("ENV") == "local", reason="Skipping this test on local environment"
57
- )
58
62
  def test_workflow_with_cli_mcp_server(
59
63
  workflow_with_virtual_assistant,
60
64
  workflow_utils,
@@ -77,8 +81,10 @@ def test_workflow_with_cli_mcp_server(
77
81
  similarity_check.check_similarity(response, expected_answer)
78
82
 
79
83
 
80
- @pytest.mark.regression
84
+ @pytest.mark.workflow
85
+ @pytest.mark.virtual_workflow
81
86
  @pytest.mark.mcp
87
+ @pytest.mark.regression
82
88
  @pytest.mark.testcase("EPMCDME-6419")
83
89
  @pytest.mark.skipif(
84
90
  os.getenv("ENV") == "local", reason="Skipping this test on local environment"
@@ -15,6 +15,10 @@ from codemie_test_harness.tests.test_data.notification_tools_test_data import (
15
15
  from codemie_test_harness.tests.utils.base_utils import get_random_name
16
16
 
17
17
 
18
+ @pytest.mark.workflow
19
+ @pytest.mark.virtual_workflow
20
+ @pytest.mark.notification
21
+ @pytest.mark.email
18
22
  @pytest.mark.regression
19
23
  @pytest.mark.tescase("EPMCDME-6652")
20
24
  @pytest.mark.skipif(
@@ -59,6 +63,10 @@ def test_workflow_with_notification_email_tool(
59
63
  assert_that(message_title, equal_to(EMAIL_SUBJECT))
60
64
 
61
65
 
66
+ @pytest.mark.workflow
67
+ @pytest.mark.virtual_workflow
68
+ @pytest.mark.notification
69
+ @pytest.mark.telegram
62
70
  @pytest.mark.regression
63
71
  @pytest.mark.tescase("EPMCDME-6652")
64
72
  def test_workflow_with_notification_telegram_tool(
@@ -8,16 +8,19 @@ from codemie_test_harness.tests.test_data.open_api_tools_test_data import (
8
8
  from codemie_test_harness.tests.utils.base_utils import get_random_name
9
9
 
10
10
 
11
+ @pytest.mark.workflow
12
+ @pytest.mark.virtual_workflow
13
+ @pytest.mark.openapi
11
14
  @pytest.mark.regression
12
15
  @pytest.mark.tescase("EPMCDME-6605")
16
+ @pytest.mark.skipif(
17
+ os.getenv("ENV") == "azure", reason="Still have an issue with encoding long strings"
18
+ )
13
19
  @pytest.mark.parametrize(
14
20
  "tool_name, prompt, expected_response",
15
21
  open_api_tools_test_data,
16
22
  ids=[f"{row[0]}" for row in open_api_tools_test_data],
17
23
  )
18
- @pytest.mark.skipif(
19
- os.getenv("ENV") == "azure", reason="Still have an issue with encoding long strings"
20
- )
21
24
  def test_workflow_with_open_api_tools(
22
25
  workflow_with_virtual_assistant,
23
26
  open_api_integration,
@@ -11,8 +11,10 @@ from codemie_test_harness.tests.utils.base_utils import get_random_name
11
11
  from codemie_test_harness.tests.utils.constants import TESTS_PATH
12
12
 
13
13
 
14
- @pytest.mark.regression
14
+ @pytest.mark.workflow
15
+ @pytest.mark.virtual_workflow
15
16
  @pytest.mark.plugin
17
+ @pytest.mark.regression
16
18
  @pytest.mark.parametrize(
17
19
  "prompt,expected_response,tool_name",
18
20
  list_files_plugin_tools_test_data,
@@ -38,8 +40,10 @@ def test_workflow_with_list_files_plugin_tools(
38
40
  similarity_check.check_similarity(response, expected_response)
39
41
 
40
42
 
41
- @pytest.mark.regression
43
+ @pytest.mark.workflow
44
+ @pytest.mark.virtual_workflow
42
45
  @pytest.mark.plugin
46
+ @pytest.mark.regression
43
47
  def test_workflow_with_modify_files_plugin_tools(
44
48
  workflow_utils,
45
49
  workflow_with_virtual_assistant,
@@ -11,8 +11,11 @@ from codemie_test_harness.tests.utils.base_utils import get_random_name
11
11
  from codemie_test_harness.tests.utils.constants import TESTS_PATH
12
12
 
13
13
 
14
- @pytest.mark.regression
14
+ @pytest.mark.workflow
15
+ @pytest.mark.virtual_workflow
15
16
  @pytest.mark.plugin
17
+ @pytest.mark.mcp
18
+ @pytest.mark.regression
16
19
  @pytest.mark.parametrize(
17
20
  "prompt,expected_response",
18
21
  cli_mcp_server_with_plugin_test_data,
@@ -40,8 +43,11 @@ def test_workflow_with_plugin_and_cli_mcp_server(
40
43
  similarity_check.check_similarity(response, expected_response)
41
44
 
42
45
 
43
- @pytest.mark.regression
46
+ @pytest.mark.workflow
47
+ @pytest.mark.virtual_workflow
44
48
  @pytest.mark.plugin
49
+ @pytest.mark.mcp
50
+ @pytest.mark.regression
45
51
  @pytest.mark.parametrize(
46
52
  "prompt,expected_response,tool_name",
47
53
  filesystem_mcp_server_with_plugin_test_data,
@@ -9,6 +9,9 @@ from codemie_test_harness.tests.utils.constants import (
9
9
  )
10
10
 
11
11
 
12
+ @pytest.mark.workflow
13
+ @pytest.mark.virtual_workflow
14
+ @pytest.mark.project_management
12
15
  @pytest.mark.regression
13
16
  @pytest.mark.tescase("EPMCDME-6651")
14
17
  @pytest.mark.parametrize(
@@ -12,6 +12,9 @@ from codemie_test_harness.tests.utils.base_utils import (
12
12
  )
13
13
 
14
14
 
15
+ @pytest.mark.workflow
16
+ @pytest.mark.virtual_workflow
17
+ @pytest.mark.research
15
18
  @pytest.mark.regression
16
19
  @pytest.mark.testcase("EPMCDME-6655")
17
20
  @pytest.mark.parametrize(
@@ -44,6 +47,9 @@ def test_workflow_with_search_tools(
44
47
  )
45
48
 
46
49
 
50
+ @pytest.mark.workflow
51
+ @pytest.mark.virtual_workflow
52
+ @pytest.mark.research
47
53
  @pytest.mark.regression
48
54
  @pytest.mark.testcase("EPMCDME-6655")
49
55
  @pytest.mark.parametrize(
@@ -8,6 +8,9 @@ from codemie_test_harness.tests.test_data.servicenow_tools_test_data import (
8
8
  from codemie_test_harness.tests.utils.base_utils import get_random_name
9
9
 
10
10
 
11
+ @pytest.mark.workflow
12
+ @pytest.mark.virtual_workflow
13
+ @pytest.mark.servicenow
11
14
  @pytest.mark.regression
12
15
  def test_workflow_with_virtual_assistant_with_servicenow_tools(
13
16
  service_now_integration,
@@ -7,6 +7,9 @@ from codemie_test_harness.tests.utils.base_utils import get_random_name
7
7
  from codemie_test_harness.tests.utils.constants import vcs_integrations
8
8
 
9
9
 
10
+ @pytest.mark.workflow
11
+ @pytest.mark.virtual_workflow
12
+ @pytest.mark.vcs
10
13
  @pytest.mark.regression
11
14
  @pytest.mark.parametrize(
12
15
  "tool_name, prompt, expected_response",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: codemie-test-harness
3
- Version: 0.1.156
3
+ Version: 0.1.157
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.156)
16
+ Requires-Dist: codemie-sdk-python (==0.1.157)
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)