Skip to content

Commit

Permalink
Skipped broken Py2 / Windows test (pandas-dev#25323)
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd authored and Pingviinituutti committed Feb 28, 2019
1 parent dc42231 commit db7f2c5
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 db7f2c5

Please sign in to comment.