Skip to content
Draft
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
5 changes: 5 additions & 0 deletions python/pyarrow/tests/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ def test_type_integers():
assert str(t) == name


@pytest.mark.pandas
def test_extension_type_to_pandas_dtype():
pa.fixed_shape_tensor(pa.float32(),[2,2]).to_pandas_dtype()
Comment on lines +55 to +57


@pytest.mark.pandas
def test_type_to_pandas_dtype():
M8 = np.dtype('datetime64[ms]')
Expand Down
Loading