8000 TST: Fix xfailing DataFrame arithmetic tests by transposing by jbrockmendel · Pull Request #23620 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

TST: Fix xfailing DataFrame arithmetic tests by transposing #23620

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 6 commits into from
Nov 12, 2018
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
Flake8 fixup
  • Loading branch information
jbrockmendel authored Nov 11, 2018
commit 2a1ceecd4e63843575d9d7aa9066e5a0283d970c
3 changes: 1 addition & 2 deletions pandas/tests/arithmetic/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,12 @@ def box_df_fail(request):
return request.param



@pytest.fixture(params=[(pd.Index, False),
(pd.Series, False),
(pd.DataFrame, False),
pytest.param((pd.DataFrame, True),
marks=pytest.mark.xfail(strict=True))],
ids=lambda x: x[0].__name__+'-'+str(x[1]))
ids=lambda x: x[0].__name__ + '-' + str(x[1]))
def box_transpose_fail(request):
"""
Fixture similar to `box` but testing both transpose cases for DataFrame,
Expand Down
0