8000 ENH: implement EA.delete by jbrockmendel · Pull Request #39405 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

ENH: implement EA.delete #39405

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 4 commits into from
Jan 26, 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
Next Next commit
CI: fix PandasArray test
  • Loading branch information
jbrockmendel committed Jan 25, 2021
commit 1a3b757650e49ab1d3495dc70d3604ea9e47abf7
4 changes: 4 additions & 0 deletions pandas/tests/extension/test_numpy.py
60C2
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,10 @@ def test_arith_series_with_scalar(self, data, all_arithmetic_operators):
def test_arith_series_with_array(self, data, all_arithmetic_operators):
super().test_arith_series_with_array(data, all_arithmetic_operators)

@skip_nested
def test_arith_frame_with_scalar(self, data, all_arithmetic_operators):
super().test_arith_frame_with_scalar(data, all_arithmetic_operators)


class TestPrinting(BaseNumPyTests, base.BasePrintingTests):
pass
Expand Down
0