File tree 3 files changed +10
-0
lines changed
3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -165,6 +165,7 @@ jobs:
165
165
pytest pandas/tests/series/
166
166
pytest pandas/tests/indexing/
167
167
168
+ pytest pandas/tests/test_*
168
169
pytest pandas/tests/api/
169
170
pytest pandas/tests/apply/
170
171
pytest pandas/tests/arrays/
@@ -175,6 +176,7 @@ jobs:
175
176
pytest pandas/tests/extension/
176
177
pytest pandas/tests/generic/
177
178
pytest pandas/tests/indexes/
179
+ pytest pandas/tests/internals/
178
180
pytest pandas/tests/io/test_* -m "not slow and not clipboard"
179
181
pytest pandas/tests/io/excel/ -m "not slow and not clipboard"
180
182
pytest pandas/tests/io/formats/ -m "not slow and not clipboard"
Original file line number Diff line number Diff line change 9
9
import pytest
10
10
11
11
from pandas ._libs .internals import BlockPlacement
12
+ import pandas .util ._test_decorators as td
12
13
13
14
from pandas .core .dtypes .common import is_scalar
14
15
38
39
)
39
40
from pandas .core .internals .blocks import new_block
40
41
42
+ # this file contains BlockManager specific tests
43
+ # TODO(ArrayManager) factor out interleave_dtype tests
44
+ pytestmark = td .skip_array_manager_invalid_test
45
+
41
46
42
47
@pytest .fixture (params = [new_block , make_block ])
43
48
def block_maker (request ):
Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ def df():
29
29
return DataFrame ({"A" : [1 , 2 , 3 ]})
30
30
31
31
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
32
35
def test_dask (df ):
33
36
34
37
toolz = import_module ("toolz" ) # noqa
You can’t perform that action at this time.
0 commit comments