Skip to content

Commit 12ca851

Browse files
Added pytest markers
1 parent edace1a commit 12ca851

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

tests/integration/async/workflow/__init__.py

Whitespace-only changes.

tests/integration/async/test_async_dynamic_fork_task_integration.py renamed to tests/integration/async/workflow/test_async_dynamic_fork_task_integration.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ def test_task_def(test_task_name):
5858
)
5959

6060

61+
@pytest.mark.v5_2_6
62+
@pytest.mark.v4_1_73
63+
@pytest.mark.v3_21_16
6164
@pytest.mark.asyncio
6265
async def test_async_dynamic_fork_task_with_separate_params(
6366
configuration,
@@ -190,6 +193,9 @@ async def test_async_dynamic_fork_task_with_separate_params(
190193
print(f"Warning: Failed to cleanup task definition: {cleanup_error}")
191194

192195

196+
@pytest.mark.v5_2_6
197+
@pytest.mark.v4_1_73
198+
@pytest.mark.v3_21_16
193199
@pytest.mark.asyncio
194200
async def test_async_dynamic_fork_task_with_combined_param(
195201
configuration,

tests/integration/workflow/test_dynamic_fork_task_integration.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ def test_task_def(test_task_name):
7373
)
7474

7575

76+
@pytest.mark.v5_2_6
77+
@pytest.mark.v4_1_73
78+
@pytest.mark.v3_21_16
7679
def test_dynamic_fork_task_with_separate_params(
7780
workflow_executor,
7881
metadata_client,
@@ -195,6 +198,9 @@ def test_dynamic_fork_task_with_separate_params(
195198
print(f"Warning: Failed to cleanup task definition: {cleanup_error}")
196199

197200

201+
@pytest.mark.v5_2_6
202+
@pytest.mark.v4_1_73
203+
@pytest.mark.v3_21_16
198204
def test_dynamic_fork_task_with_combined_param(
199205
workflow_executor,
200206
metadata_client,

0 commit comments

Comments
 (0)