Skip to content

Commit 00a6224

Browse files
[ArrayManager] TST: enable remaining top-level tests (#40494)
1 parent d867f16 commit 00a6224

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff 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"

pandas/tests/internals/test_internals.py

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import pytest
1010

1111
from pandas._libs.internals import BlockPlacement
12+
import pandas.util._test_decorators as td
1213

1314
from pandas.core.dtypes.common import is_scalar
1415

@@ -38,6 +39,10 @@
3839
)
3940
from 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])
4348
def block_maker(request):

pandas/tests/test_downstream.py

+3
Original file line numberDiff line numberDiff 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
3235
def test_dask(df):
3336

3437
toolz = import_module("toolz") # noqa

0 commit comments

Comments
 (0)