Skip to content

Commit 4b015aa

Browse files
committed
update docstrings
1 parent bb6fc69 commit 4b015aa

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

tests/compliance/date/test_date_compliance.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ class TestIndex(base.BaseIndexTests):
7272

7373
class TestInterface(base.BaseInterfaceTests):
7474
def test_array_interface_copy(self, data):
75+
# This test was failing compliance checks due to changes in how
76+
# numpy handles processing when np.array(obj, copy=False).
77+
# Until pandas changes the existing tests, this compliance test
78+
# will continue to fail.
7579
import numpy as np
7680
from pandas.compat.numpy import np_version_gt2
7781

tests/compliance/json/test_json_compliance.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@ def test_view(self, data):
144144
super().test_view(data)
145145

146146
def test_array_interface_copy(self, data):
147+
# This test was failing compliance checks due to changes in how
148+
# numpy handles processing when np.array(obj, copy=False).
149+
# Until pandas changes the existing tests, this compliance test
150+
# will continue to fail.
147151
import numpy as np
148152
from pandas.compat.numpy import np_version_gt2
149153

tests/compliance/time/test_time_compliance.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ class TestIndex(base.BaseIndexTests):
7777

7878
class TestInterface(base.BaseInterfaceTests):
7979
def test_array_interface_copy(self, data):
80+
# This test was failing compliance checks due to changes in how
81+
# numpy handles processing when np.array(obj, copy=False).
82+
# Until pandas changes the existing tests, this compliance test
83+
# will continue to fail.
8084
import numpy as np
8185
from pandas.compat.numpy import np_version_gt2
8286

0 commit comments

Comments
 (0)