From 308d6058a51d980fa9d332b68153ae174b19c7db Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Wed, 17 Dec 2025 15:25:25 +0100 Subject: [PATCH] chore: adds docstrings to tests --- cognee/tests/unit/api/test_get_raw_data_endpoint.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cognee/tests/unit/api/test_get_raw_data_endpoint.py b/cognee/tests/unit/api/test_get_raw_data_endpoint.py index 7c7e32d87..2414ca091 100644 --- a/cognee/tests/unit/api/test_get_raw_data_endpoint.py +++ b/cognee/tests/unit/api/test_get_raw_data_endpoint.py @@ -85,6 +85,7 @@ def _patch_raw_download_dependencies( def test_get_raw_data_local_file_downloads_bytes(client, monkeypatch, tmp_path): + """Downloads bytes from a file:// raw_data_location.""" dataset_id = uuid.uuid4() data_id = uuid.uuid4() @@ -107,6 +108,7 @@ def test_get_raw_data_local_file_downloads_bytes(client, monkeypatch, tmp_path): def test_get_raw_data_s3_streams_bytes_without_s3_dependency(client, monkeypatch): + """Streams bytes from an s3:// raw_data_location (mocked).""" dataset_id = uuid.uuid4() data_id = uuid.uuid4()