Skip to content

Commit 7e89095

Browse files
RjLi13Pingviinituutti
authored andcommitted
TST- Fixing issue with test_parquet test unexpectedly passing (pandas-dev#24480)
* Fixing issue with test_parquet passing
1 parent b21a8f3 commit 7e89095

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/deps/azure-macos-35.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ dependencies:
1313
- numexpr
1414
- numpy=1.12.0
1515
- openpyxl=2.5.5
16+
- pyarrow
17+
- fastparquet
1618
- pytables
1719
- python=3.5*
1820
- pytz

pandas/tests/io/test_parquet.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import numpy as np
1010
import pandas as pd
11-
from pandas.compat import PY3, is_platform_windows, is_platform_mac
11+
from pandas.compat import PY3
1212
from pandas.io.parquet import (to_parquet, read_parquet, get_engine,
1313
PyArrowImpl, FastParquetImpl)
1414
from pandas.util import testing as tm
@@ -200,8 +200,6 @@ def test_options_get_engine(fp, pa):
200200
assert isinstance(get_engine('fastparquet'), FastParquetImpl)
201201

202202

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

0 commit comments

Comments
 (0)