From 17548fcbd74f4ed3557e6b9ca6181263ce52adaa Mon Sep 17 00:00:00 2001 From: User Date: Tue, 2 Jul 2024 16:03:49 +0300 Subject: [PATCH] update run_integration_tests --- tests/run_integration_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run_integration_tests.py b/tests/run_integration_tests.py index 7b8d7b14..5601d572 100644 --- a/tests/run_integration_tests.py +++ b/tests/run_integration_tests.py @@ -23,7 +23,7 @@ project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) sys.path.insert(0, project_root) # ensure the examples are importable -from examples.old.delegation_crewai import main as delegation_crewai_main +from examples.delegation_demo import main as delegation_demo_main from examples.old.single_llama_index import main as single_llama_index_main from motleycrew.common import logger, configure_logging from motleycrew.common.exceptions import ( @@ -33,7 +33,7 @@ INTEGRATION_TESTS = { "single_llama_index": single_llama_index_main, - "delegation_crewai": delegation_crewai_main, + "delegation_demo": delegation_demo_main, } IPYNB_INTEGRATION_TESTS = {