Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
af2b073
feat: incremental load initial commit
dexters1 Jul 10, 2025
d98253c
fix: Resolve issue with Data object when running cognify pipeline
dexters1 Jul 10, 2025
593cfca
feat: Add incremental load
dexters1 Jul 10, 2025
80896fd
test: Fix deduplication test
dexters1 Jul 10, 2025
67b61ff
fix: Resolve code graph pipeline issue
dexters1 Jul 10, 2025
dc38ff3
fix: Resolve S3 adding specific files issue
dexters1 Jul 10, 2025
30be0df
fix: Resolve for loop break issue
dexters1 Jul 10, 2025
081fae8
Merge branch 'dev' into incremental-loading
dexters1 Jul 14, 2025
d78599a
Merge branch 'dev' into incremental-loading
dexters1 Jul 14, 2025
5321fca
feat: Enable async execution of data items for incremental loading
dexters1 Jul 16, 2025
0285989
refactor: Revert simple example changes
dexters1 Jul 16, 2025
e259720
refactor: Change per data func name
dexters1 Jul 21, 2025
622eabc
Merge branch 'dev' into incremental-loading-async
dexters1 Jul 21, 2025
e7b9ca2
fix: Add pipeline info per dataset id
dexters1 Jul 21, 2025
8f057da
refactor: Split run_tasks_per_data function
dexters1 Jul 21, 2025
14dfe0b
refactor: format code
dexters1 Jul 21, 2025
838e5d6
refactor: Remove pypdf error swallowing now that there is a document …
dexters1 Jul 21, 2025
c3e6a3b
Merge branch 'dev' into incremental-loading-async
dexters1 Jul 21, 2025
00c40d6
Merge branch 'dev' into incremental-loading-async
dexters1 Jul 22, 2025
ea871d0
fix: Add missing await to get default user
dexters1 Jul 22, 2025
7a5a861
refactor: Remove unused import
dexters1 Jul 28, 2025
c129b4a
Merge branch 'dev' into incremental-loading-async
dexters1 Jul 28, 2025
9b4ee40
Merge branch 'dev' into incremental-loading-async
dexters1 Jul 28, 2025
031690e
feat: add pipelineRunAlreadyCompleted info when processing data
dexters1 Jul 28, 2025
c0259c6
fix: Resolve model dump issue for add endpoint
dexters1 Jul 28, 2025
6821e39
feat: add cognee pipeline exceptions
dexters1 Jul 28, 2025
72cfe99
feat: Add enum for data processing completed info
dexters1 Jul 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: Fix deduplication test
  • Loading branch information
dexters1 committed Jul 10, 2025
commit 80896fdcc59583a2134b64f51c60dd70f5d83188
4 changes: 2 additions & 2 deletions cognee/tests/test_deduplication.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ async def test_deduplication():
explanation_file_path2 = os.path.join(
pathlib.Path(__file__).parent, "test_data/Natural_language_processing_copy.txt"
)
await cognee.add([explanation_file_path], dataset_name)
await cognee.add([explanation_file_path2], dataset_name2)
await cognee.add([explanation_file_path], dataset_name, incremental_loading=False)
await cognee.add([explanation_file_path2], dataset_name2, incremental_loading=False)

result = await relational_engine.get_all_data_from_table("data")
assert len(result) == 1, "More than one data entity was found."
Expand Down