Skip to content

Commit 446be82

Browse files
authored
CI: troubleshoot windows builds (#37746)
1 parent 1d9912a commit 446be82

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/run_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ PYTEST_CMD="${XVFB}pytest -m \"$PATTERN\" -n $PYTEST_WORKERS --dist=loadfile -s
2525
if [[ $(uname) != "Linux" && $(uname) != "Darwin" ]]; then
2626
# GH#37455 windows py38 build appears to be running out of memory
2727
# skip collection of window tests
28-
PYTEST_CMD="$PYTEST_CMD --ignore=pandas/tests/window/"
28+
PYTEST_CMD="$PYTEST_CMD --ignore=pandas/tests/window/ --ignore=pandas/tests/plotting/"
2929
fi
3030

3131
echo $PYTEST_CMD

pandas/tests/plotting/test_groupby.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import numpy as np
55
import pytest
66

7-
from pandas.compat import PY38, is_platform_windows
7+
from pandas.compat import is_platform_windows
88
import pandas.util._test_decorators as td
99

1010
from pandas import DataFrame, Index, Series
@@ -15,7 +15,7 @@
1515
@td.skip_if_no_mpl
1616
class TestDataFrameGroupByPlots(TestPlotBase):
1717
@pytest.mark.xfail(
18-
is_platform_windows() and not PY38,
18+
is_platform_windows(),
1919
reason="Looks like LinePlot._is_ts_plot is wrong",
2020
strict=False,
2121
)

0 commit comments

Comments
 (0)