File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -176,3 +176,19 @@ jobs:
176
176
pytest pandas/tests/frame/indexing/test_setitem.py::TestDataFrameSetItem::test_setitem_listlike_indexer_duplicate_columns
177
177
pytest pandas/tests/indexing/multiindex/test_setitem.py::TestMultiIndexSetItem::test_astype_assignment_with_dups
178
178
pytest pandas/tests/indexing/multiindex/test_setitem.py::TestMultiIndexSetItem::test_frame_setitem_multi_column
179
+
180
+ pytest pandas/tests/api/
181
+ pytest pandas/tests/base/
182
+ pytest pandas/tests/computation/
183
+ pytest pandas/tests/config/
184
+ pytest pandas/tests/dtypes/
185
+ pytest pandas/tests/generic/
186
+ pytest pandas/tests/indexes/
187
+ pytest pandas/tests/libs/
188
+ pytest pandas/tests/plotting/
189
+ pytest pandas/tests/scalar/
190
+ pytest pandas/tests/strings/
191
+ pytest pandas/tests/tools/
192
+ pytest pandas/tests/tseries/
193
+ pytest pandas/tests/tslibs/
194
+ pytest pandas/tests/util/
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ def test_rename(self):
85
85
86
86
# multiple axes at once
87
87
88
- def test_get_numeric_data (self ):
88
+ def test_get_numeric_data (self , using_array_manager ):
89
89
90
90
n = 4
91
91
kwargs = {
@@ -100,6 +100,9 @@ def test_get_numeric_data(self):
100
100
# non-inclusion
101
101
result = o ._get_bool_data ()
102
102
expected = self ._construct (n , value = "empty" , ** kwargs )
103
+ if using_array_manager and isinstance (o , DataFrame ):
104
+ # INFO(ArrayManager) preserve the dtype of the columns Index
105
+ expected .columns = expected .columns .astype ("int64" )
103
106
self ._compare (result , expected )
104
107
105
108
# get the bool data
You can’t perform that action at this time.
0 commit comments