Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions tests/toydata/books.tsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
title author year
Title1 author1 2020
Title2 author2 1234
3 changes: 3 additions & 0 deletions tests/toydata/books_semicolon_sep.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
title;author;year
Title1;author1;2020
Title2;author2;1234
Binary file added tests/toydata/image-data/apple.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion tests/units/array/test_array_from_to_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def test_from_csv_with_wrong_schema_raise_exception(nested_doc):


def test_from_remote_csv_file():
remote_url = 'https://github.com/docarray/docarray/blob/feat-csv-from-remote-file/tests/toydata/books.csv?raw=true'
remote_url = 'https://github.com/docarray/docarray/blob/feat-rewrite-v2/tests/toydata/books.csv?raw=true'

class Book(BaseDoc):
title: str
Expand Down