Skip to content

Commit

Permalink
Backport PR pandas-dev#25323: Skipped broken Py2 / Windows test (pand…
Browse files Browse the repository at this point in the history
  • Loading branch information
meeseeksmachine authored and gfyoung committed Feb 15, 2019
1 parent e06ec77 commit fcfd1d4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pandas/tests/test_downstream.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import numpy as np # noqa
import pytest

from pandas.compat import PY36
from pandas.compat import PY2, PY36, is_platform_windows

from pandas import DataFrame
from pandas.util import testing as tm
Expand Down Expand Up @@ -58,6 +58,8 @@ def test_xarray(df):
assert df.to_xarray() is not None


@pytest.mark.skipif(is_platform_windows() and PY2,
reason="Broken on Windows / Py2")
def test_oo_optimizable():
# GH 21071
subprocess.check_call([sys.executable, "-OO", "-c", "import pandas"])
Expand Down

0 comments on commit fcfd1d4

Please sign in to comment.