File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -165,6 +165,7 @@ jobs:
165165 pytest pandas/tests/series/
166166 pytest pandas/tests/indexing/
167167
168+ pytest pandas/tests/test_*
168169 pytest pandas/tests/api/
169170 pytest pandas/tests/apply/
170171 pytest pandas/tests/arrays/
@@ -175,6 +176,7 @@ jobs:
175176 pytest pandas/tests/extension/
176177 pytest pandas/tests/generic/
177178 pytest pandas/tests/indexes/
179+ pytest pandas/tests/internals/
178180 pytest pandas/tests/io/test_* -m "not slow and not clipboard"
179181 pytest pandas/tests/io/excel/ -m "not slow and not clipboard"
180182 pytest pandas/tests/io/formats/ -m "not slow and not clipboard"
Original file line number Diff line number Diff line change 99import pytest
1010
1111from pandas ._libs .internals import BlockPlacement
12+ import pandas .util ._test_decorators as td
1213
1314from pandas .core .dtypes .common import is_scalar
1415
3839)
3940from pandas .core .internals .blocks import new_block
4041
42+ # this file contains BlockManager specific tests
43+ # TODO(ArrayManager) factor out interleave_dtype tests
44+ pytestmark = td .skip_array_manager_invalid_test
45+
4146
4247@pytest .fixture (params = [new_block , make_block ])
4348def block_maker (request ):
Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ def df():
2929 return DataFrame ({"A" : [1 , 2 , 3 ]})
3030
3131
32+ # TODO(ArrayManager) dask is still accessing the blocks
33+ # https://github.com/dask/dask/pull/7318
34+ @td .skip_array_manager_not_yet_implemented
3235def test_dask (df ):
3336
3437 toolz = import_module ("toolz" ) # noqa
You can’t perform that action at this time.
0 commit comments