From 78989b0eb7dd012442cb480ceed217d8ecc28f03 Mon Sep 17 00:00:00 2001 From: yzlin Date: Tue, 6 Feb 2024 23:37:24 +0800 Subject: [PATCH] skip two individual tests --- tests/metagpt/actions/test_rebuild_class_view.py | 1 + tests/metagpt/actions/test_summarize_code.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/metagpt/actions/test_rebuild_class_view.py b/tests/metagpt/actions/test_rebuild_class_view.py index 403109cc0..2188d6b85 100644 --- a/tests/metagpt/actions/test_rebuild_class_view.py +++ b/tests/metagpt/actions/test_rebuild_class_view.py @@ -14,6 +14,7 @@ from metagpt.actions.rebuild_class_view import RebuildClassView from metagpt.llm import LLM +@pytest.mark.skip @pytest.mark.asyncio async def test_rebuild(context): action = RebuildClassView( diff --git a/tests/metagpt/actions/test_summarize_code.py b/tests/metagpt/actions/test_summarize_code.py index a404047c1..3cfe7ca81 100644 --- a/tests/metagpt/actions/test_summarize_code.py +++ b/tests/metagpt/actions/test_summarize_code.py @@ -176,6 +176,7 @@ class Snake: """ +@pytest.mark.skip @pytest.mark.asyncio async def test_summarize_code(context): git_dir = Path(__file__).parent / f"unittest/{uuid.uuid4().hex}"