diff --git a/ci/run_tests.sh b/ci/run_tests.sh index 9b553fbc81a03..78d24c814840a 100755 --- a/ci/run_tests.sh +++ b/ci/run_tests.sh @@ -25,7 +25,7 @@ PYTEST_CMD="${XVFB}pytest -m \"$PATTERN\" -n $PYTEST_WORKERS --dist=loadfile -s if [[ $(uname) != "Linux" && $(uname) != "Darwin" ]]; then # GH#37455 windows py38 build appears to be running out of memory # skip collection of window tests - PYTEST_CMD="$PYTEST_CMD --ignore=pandas/tests/window/" + PYTEST_CMD="$PYTEST_CMD --ignore=pandas/tests/window/ --ignore=pandas/tests/plotting/" fi echo $PYTEST_CMD diff --git a/pandas/tests/plotting/test_groupby.py b/pandas/tests/plotting/test_groupby.py index 805a284c8f863..7ed29507fe0f4 100644 --- a/pandas/tests/plotting/test_groupby.py +++ b/pandas/tests/plotting/test_groupby.py @@ -4,7 +4,7 @@ import numpy as np import pytest -from pandas.compat import PY38, is_platform_windows +from pandas.compat import is_platform_windows import pandas.util._test_decorators as td from pandas import DataFrame, Index, Series @@ -15,7 +15,7 @@ @td.skip_if_no_mpl class TestDataFrameGroupByPlots(TestPlotBase): @pytest.mark.xfail( - is_platform_windows() and not PY38, + is_platform_windows(), reason="Looks like LinePlot._is_ts_plot is wrong", strict=False, )