File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ PYTEST_CMD="${XVFB}pytest -m \"$PATTERN\" -n $PYTEST_WORKERS --dist=loadfile -s
25
25
if [[ $( uname) != " Linux" && $( uname) != " Darwin" ]]; then
26
26
# GH#37455 windows py38 build appears to be running out of memory
27
27
# 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/ "
29
29
fi
30
30
31
31
echo $PYTEST_CMD
Original file line number Diff line number Diff line change 4
4
import numpy as np
5
5
import pytest
6
6
7
- from pandas .compat import PY38 , is_platform_windows
7
+ from pandas .compat import is_platform_windows
8
8
import pandas .util ._test_decorators as td
9
9
10
10
from pandas import DataFrame , Index , Series
15
15
@td .skip_if_no_mpl
16
16
class TestDataFrameGroupByPlots (TestPlotBase ):
17
17
@pytest .mark .xfail (
18
- is_platform_windows () and not PY38 ,
18
+ is_platform_windows (),
19
19
reason = "Looks like LinePlot._is_ts_plot is wrong" ,
20
20
strict = False ,
21
21
)
You can’t perform that action at this time.
0 commit comments