Skip to content

Commit

Permalink
rm old test_table_reads.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Chia committed Jun 7, 2023
1 parent 9e361a4 commit f4a7835
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 119 deletions.
2 changes: 2 additions & 0 deletions tests/table/table_io/test_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ def test_json_infer_schema(data, expected_dtype):
["foo", daft.Series.from_pylist(["foo", "foo", None])],
[1.5, daft.Series.from_pylist([1.5, 1.5, None])],
(True, daft.Series.from_pylist([True, True, None])),
([[], [1, 2], None], daft.Series.from_pylist([[[], [1, 2], None], [[], [1, 2], None], None])),
({"foo": 1}, daft.Series.from_pylist([{"foo": 1}, {"foo": 1}, None])),
],
)
def test_json_read_data(data, expected_data_series):
Expand Down
2 changes: 2 additions & 0 deletions tests/table/table_io/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ def test_parquet_infer_schema(data, expected_dtype):
[datetime.date(year=2021, month=1, day=1), datetime.date(year=2021, month=1, day=1), None]
),
),
([[], [1, 2], None], daft.Series.from_pylist([[[], [1, 2], None], [[], [1, 2], None], None])),
({"foo": 1}, daft.Series.from_pylist([{"foo": 1}, {"foo": 1}, None])),
],
)
def test_parquet_read_data(data, expected_data_series):
Expand Down
119 changes: 0 additions & 119 deletions tests/table/table_io/test_table_reads.py

This file was deleted.

0 comments on commit f4a7835

Please sign in to comment.