From ef0c4b134dd586d9415e12287b8cc15894551a9d Mon Sep 17 00:00:00 2001 From: liu an Date: Mon, 12 May 2025 09:49:14 +0800 Subject: [PATCH] Test: skip unstable test cases (#7578) ### What problem does this PR solve? Skip unstable test cases to ensure daily testing stability ### Type of change - [x] Update test cases --- .../test_stop_parse_documents.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/python/test/test_http_api/test_file_management_within_dataset/test_stop_parse_documents.py b/sdk/python/test/test_http_api/test_file_management_within_dataset/test_stop_parse_documents.py index 57177590a..e2dc4f7e0 100644 --- a/sdk/python/test/test_http_api/test_file_management_within_dataset/test_stop_parse_documents.py +++ b/sdk/python/test/test_http_api/test_file_management_within_dataset/test_stop_parse_documents.py @@ -168,7 +168,7 @@ class TestDocumentsParseStop: assert f"Duplicate document ids: {document_ids[0]}" in res["data"]["errors"] -@pytest.mark.p3 +@pytest.mark.skip(reason="unstable") def test_stop_parse_100_files(get_http_api_auth, add_dataset_func, tmp_path): document_num = 100 dataset_id = add_dataset_func @@ -180,7 +180,7 @@ def test_stop_parse_100_files(get_http_api_auth, add_dataset_func, tmp_path): validate_document_parse_cancel(get_http_api_auth, dataset_id, document_ids) -@pytest.mark.p3 +@pytest.mark.skip(reason="unstable") def test_concurrent_parse(get_http_api_auth, add_dataset_func, tmp_path): document_num = 50 dataset_id = add_dataset_func