Skip to content

TST- Fixing issue with test_parquet test unexpectedly passing #24480

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 7 commits into from
Dec 30, 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
3 changes: 2 additions & 1 deletion pandas/tests/io/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,8 @@ def test_options_get_engine(fp, pa):


@pytest.mark.xfail(is_platform_windows() or is_platform_mac(),
Copy link
Contributor

@TomAugspurger TomAugspurger Dec 29, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you try removing the xfail entirely? It looks like it may be unnecessary now.

Copy link
Contributor Author

@RjLi13 RjLi13 Dec 29, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did do that in another branch and it passed the CI tests of travis, but it seems there's discussion of pyarrow and fastparquet as well as windows causing problems? Not completely sure.

Edit: Also passed CI tests in azure

reason="reading pa metadata failing on Windows/mac")
reason="reading pa metadata failing on Windows/mac",
strict=False)
def test_cross_engine_pa_fp(df_cross_compat, pa, fp):
# cross-compat with differing reading/writing engines

Expand Down