fix: store absolute paths in dataset.json

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-07 14:10:06 +02:00
parent 8148971aae
commit 8bc42cabd9
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -245,7 +245,7 @@ def test_upsert_creates_file():
entries = json.load(f)
assert len(entries) == 1
assert entries[0]["label"] == "dog barking"
assert entries[0]["path"] == "clip_001.mp4"
assert entries[0]["path"] == clip
def test_upsert_appends_new_clips():
with tempfile.TemporaryDirectory() as d: