From 052366bb0eec3481dc61ea8bcdb2ddcb2feec529 Mon Sep 17 00:00:00 2001 From: Lucas Gomide Date: Mon, 14 Apr 2025 12:27:11 -0300 Subject: [PATCH] revert skip pytest decorators --- tests/crew_test.py | 3 --- tests/knowledge/knowledge_test.py | 3 --- 2 files changed, 6 deletions(-) diff --git a/tests/crew_test.py b/tests/crew_test.py index 240e9731b..8449eeccf 100644 --- a/tests/crew_test.py +++ b/tests/crew_test.py @@ -3936,9 +3936,6 @@ def test_crew_guardrail_feedback_in_context(): @pytest.mark.vcr(filter_headers=["authorization"]) -@pytest.mark.skipif( - sys.version_info.minor == 11, reason="VCR cassette issues in Python 3.11" -) def test_before_kickoff_callback(): from crewai.project import CrewBase, agent, before_kickoff, task diff --git a/tests/knowledge/knowledge_test.py b/tests/knowledge/knowledge_test.py index 630530c2e..c2867cf39 100644 --- a/tests/knowledge/knowledge_test.py +++ b/tests/knowledge/knowledge_test.py @@ -568,9 +568,6 @@ def test_docling_source(mock_vector_db): mock_vector_db.query.assert_called_once() -@pytest.mark.skipif( - sys.version_info.minor == 11, reason="VCR cassette issues in Python 3.11" -) def test_multiple_docling_sources(): urls: List[Union[Path, str]] = [ "https://lilianweng.github.io/posts/2024-11-28-reward-hacking/",