8000 [ArrayManager] Remaining GroupBy tests (fix count, pass on libreduction for now) by jorisvandenbossche · Pull Request #40050 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

[ArrayManager] Remaining GroupBy tests (fix count, pass on libreduction for now) #40050

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 27, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use xfail
  • Loading branch information
jorisvandenbossche committed Feb 26, 2021
commit 469d8a8230531037104a3731a14b10fffeaef490
4 changes: 3 additions & 1 deletion pandas/tests/groupby/transform/test_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ def test_transform_axis_1(request, transformation_func, using_array_manager):
# GH 36308
if using_array_manager and transformation_func == "pct_change":
# TODO(ArrayManager) column-wise shift
pytest.skip("ArrayManager: column-wise not yet implemented")
request.node.add_marker(
pytest.mark.xfail(reason="ArrayManager: shift axis=1 not yet implemented")
)
warn = None
if transformation_func == "tshift":
warn = FutureWarning
Expand Down
0