From c7e83a752915e801ea16135bc4cfeda73649a089 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 30 May 2025 09:10:46 +0000 Subject: [PATCH] Update optional dependencies tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: João --- tests/test_optional_dependencies.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_optional_dependencies.py b/tests/test_optional_dependencies.py index 4f9583498..8d8156925 100644 --- a/tests/test_optional_dependencies.py +++ b/tests/test_optional_dependencies.py @@ -14,13 +14,11 @@ def test_import_without_chromadb(): if "crewai.utilities.embedding_configurator" in sys.modules: importlib.reload(sys.modules["crewai.utilities.embedding_configurator"]) - import crewai - from crewai import Agent, Task, Crew, Process agent = Agent(role="Test Agent", goal="Test Goal", backstory="Test Backstory") task = Task(description="Test Task", agent=agent) - crew = Crew(agents=[agent], tasks=[task], process=Process.sequential) + _ = Crew(agents=[agent], tasks=[task], process=Process.sequential) def test_memory_storage_without_chromadb():