diff --git a/tests/toydata/books.tsv b/tests/toydata/books.tsv new file mode 100644 index 00000000000..659a815e038 --- /dev/null +++ b/tests/toydata/books.tsv @@ -0,0 +1,3 @@ +title author year +Title1 author1 2020 +Title2 author2 1234 \ No newline at end of file diff --git a/tests/toydata/books_semicolon_sep.csv b/tests/toydata/books_semicolon_sep.csv new file mode 100644 index 00000000000..edb913a8c9f --- /dev/null +++ b/tests/toydata/books_semicolon_sep.csv @@ -0,0 +1,3 @@ +title;author;year +Title1;author1;2020 +Title2;author2;1234 \ No newline at end of file diff --git a/tests/toydata/image-data/apple.png b/tests/toydata/image-data/apple.png new file mode 100644 index 00000000000..aa0fa74f78b Binary files /dev/null and b/tests/toydata/image-data/apple.png differ diff --git a/tests/units/array/test_array_from_to_csv.py b/tests/units/array/test_array_from_to_csv.py index f58dcefd1cb..9d52bb3a22c 100644 --- a/tests/units/array/test_array_from_to_csv.py +++ b/tests/units/array/test_array_from_to_csv.py @@ -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