We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 690b00f commit 75d556cCopy full SHA for 75d556c
tests/config/test_seed.py
@@ -20,7 +20,7 @@ def create_partitions_in_path(temp_dir: Path, extension: str, num_files: int = 2
20
elif extension == "csv":
21
df.to_csv(file_path, index=False)
22
elif extension == "json":
23
- df.to_json(file_path, orient="records")
+ df.to_json(file_path, orient="records", lines=True)
24
elif extension == "jsonl":
25
df.to_json(file_path, orient="records", lines=True)
26
return temp_dir
0 commit comments