Skip to content

Commit

Permalink
TST- Fixing issue with test_parquet test unexpectedly passing (#24480)
Browse files Browse the repository at this point in the history
* Fixing issue with test_parquet passing
  • Loading branch information
RjLi13 authored and TomAugspurger committed Dec 30, 2018
1 parent d5e5bf7 commit 681e75c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ci/deps/azure-macos-35.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ dependencies:
- numexpr
- numpy=1.12.0
- openpyxl=2.5.5
- pyarrow
- fastparquet
- pytables
- python=3.5*
- pytz
Expand Down
4 changes: 1 addition & 3 deletions pandas/tests/io/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import numpy as np
import pandas as pd
from pandas.compat import PY3, is_platform_windows, is_platform_mac
from pandas.compat import PY3
from pandas.io.parquet import (to_parquet, read_parquet, get_engine,
PyArrowImpl, FastParquetImpl)
from pandas.util import testing as tm
Expand Down Expand Up @@ -200,8 +200,6 @@ def test_options_get_engine(fp, pa):
assert isinstance(get_engine('fastparquet'), FastParquetImpl)


@pytest.mark.xfail(is_platform_windows() or is_platform_mac(),
reason="reading pa metadata failing on Windows/mac")
def test_cross_engine_pa_fp(df_cross_compat, pa, fp):
# cross-compat with differing reading/writing engines

Expand Down

0 comments on commit 681e75c

Please sign in to comment.