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 @@ -173,3 +173,19 @@ jobs:
173
173
pytest pandas/tests/frame/indexing/test_setitem.py::TestDataFrameSetItem::test_setitem_listlike_indexer_duplicate_columns --array-manager
174
174
pytest pandas/tests/indexing/multiindex/test_setitem.py::TestMultiIndexSetItem::test_astype_assignment_with_dups --array-manager
175
175
pytest pandas/tests/indexing/multiindex/test_setitem.py::TestMultiIndexSetItem::test_frame_setitem_multi_column --array-manager
176
+
177
+ pytest pandas/tests/api/ --array-manager
178
+ pytest pandas/tests/base/ --array-manager
179
+ pytest pandas/tests/computation/ --array-manager
180
+ pytest pandas/tests/config/ --array-manager
181
+ pytest pandas/tests/dtypes/ --array-manager
182
+ pytest pandas/tests/generic/ --array-manager
183
+ pytest pandas/tests/indexes/ --array-manager
184
+ pytest pandas/tests/libs/ --array-manager
185
+ pytest pandas/tests/plotting/ --array-manager
186
+ pytest pandas/tests/scalar/ --array-manager
187
+ pytest pandas/tests/strings/ --array-manager
188
+ pytest pandas/tests/tools/ --array-manager
189
+ pytest pandas/tests/tseries/ --array-manager
190
+ pytest pandas/tests/tslibs/ --array-manager
191
+ pytest pandas/tests/util/ --array-manager
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