Skip to content

Commit 3e7c47c

Browse files
committed
address failures
1 parent 2f447b4 commit 3e7c47c

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

bindings/python/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ xfail_strict = true
106106
filterwarnings = [
107107
"error",
108108
"module:The global interpreter lock:RuntimeWarning", # from pandas
109+
"module:matching against an empty string will:pytest.PytestWarning", # from pandas
109110
]
110111

111112
[tool.ruff]

bindings/python/test/pandas_types/test_binary.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ def test_contains(self):
9191
# We cannot compare a Binary object to an array.
9292
pass
9393

94+
def test_array_interface_copy(self):
95+
# We cannot avoid copying with our extension arrays.
96+
pass
97+
9498

9599
class TestConstructors(base.BaseConstructorsTests):
96100
def test_array_from_scalars(self):

bindings/python/test/pandas_types/test_code.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ def test_contains(self):
8787
# We cannot compare a Code object to an array.
8888
pass
8989

90+
def test_array_interface_copy(self):
91+
# We cannot avoid copying with our extension arrays.
92+
pass
93+
9094

9195
class TestConstructors(base.BaseConstructorsTests):
9296
pass

bindings/python/test/pandas_types/test_decimal128.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ def test_is_not_object_type(self, data):
8484

8585

8686
class TestInterface(base.BaseInterfaceTests):
87-
pass
87+
def test_array_interface_copy(self):
88+
# We cannot avoid copying with our extension arrays.
89+
pass
8890

8991

9092
class TestConstructors(base.BaseConstructorsTests):

bindings/python/test/pandas_types/test_objectid.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ def test_is_not_object_type(self, data):
8383

8484

8585
class TestInterface(base.BaseInterfaceTests):
86-
pass
86+
def test_array_interface_copy(self):
87+
# We cannot avoid copying with our extension arrays.
88+
pass
8789

8890

8991
class TestConstructors(base.BaseConstructorsTests):

0 commit comments

Comments
 (0)