From c6f4eec36785efeb7a050284b9a1a14fd32ce562 Mon Sep 17 00:00:00 2001 From: Daulet Amirkhanov Date: Mon, 13 Oct 2025 16:40:08 +0100 Subject: [PATCH] temp --- .../cli_integration_tests/test_cli_integration.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/cognee/tests/cli_tests/cli_integration_tests/test_cli_integration.py b/cognee/tests/cli_tests/cli_integration_tests/test_cli_integration.py index 9b350bb7e..8c4268dbc 100644 --- a/cognee/tests/cli_tests/cli_integration_tests/test_cli_integration.py +++ b/cognee/tests/cli_tests/cli_integration_tests/test_cli_integration.py @@ -82,6 +82,7 @@ class TestCliIntegration: capture_output=True, text=True, cwd=Path(__file__).parent.parent.parent, # Go to project root + check=True, ) # Note: This might fail due to dependencies, but we're testing the CLI structure @@ -94,13 +95,6 @@ class TestCliIntegration: has_litellm_cancellation = ( "loggingworker cancelled" in stderr_lower or "cancellederror" in stderr_lower ) - has_kuzu_extension_error = ( - "could not establish connection" in stderr_lower - and "extension.kuzudb.com" in stderr_lower - ) or ( - "binder exception: extension" in stderr_lower - and "has not been installed" in stderr_lower - ) try: assert not has_error or has_expected_failure or has_litellm_cancellation