diff --git a/cognee/tests/cli_tests/cli_unit_tests/test_cli_commands.py b/cognee/tests/cli_tests/cli_unit_tests/test_cli_commands.py index 7654a781a..1301a8eaa 100644 --- a/cognee/tests/cli_tests/cli_unit_tests/test_cli_commands.py +++ b/cognee/tests/cli_tests/cli_unit_tests/test_cli_commands.py @@ -238,6 +238,7 @@ class TestCognifyCommand: ontology_file_path=None, chunker=TextChunker, run_in_background=False, + chunks_per_batch=None, ) @patch("cognee.cli.commands.cognify_command.asyncio.run") diff --git a/cognee/tests/cli_tests/cli_unit_tests/test_cli_edge_cases.py b/cognee/tests/cli_tests/cli_unit_tests/test_cli_edge_cases.py index ae9e99ac6..466a9e458 100644 --- a/cognee/tests/cli_tests/cli_unit_tests/test_cli_edge_cases.py +++ b/cognee/tests/cli_tests/cli_unit_tests/test_cli_edge_cases.py @@ -262,6 +262,7 @@ class TestCognifyCommandEdgeCases: ontology_file_path=None, chunker=TextChunker, run_in_background=False, + chunks_per_batch=None, ) @patch("cognee.cli.commands.cognify_command.asyncio.run", side_effect=_mock_run) @@ -295,6 +296,7 @@ class TestCognifyCommandEdgeCases: ontology_file_path="/nonexistent/path/ontology.owl", chunker=TextChunker, run_in_background=False, + chunks_per_batch=None, ) @patch("cognee.cli.commands.cognify_command.asyncio.run")