Skip to content

Commit d16bc69

Browse files
committed
xfail test
1 parent d0064af commit d16bc69

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pandas/tests/plotting/frame/test_frame_legend.py

+7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
from matplotlib.collections import LineCollection
22
from matplotlib.lines import Line2D
3+
import pytest
34

45
from pandas import DataFrame
56

67

8+
@pytest.mark.xfail(
9+
reason=(
10+
"Open bug in matplotlib "
11+
"https://github.com/matplotlib/matplotlib/issues/11357"
12+
)
13+
)
714
def test_mixed_yerr():
815
# https://github.com/pandas-dev/pandas/issues/39522
916
df = DataFrame([{"x": 1, "a": 1, "b": 1}, {"x": 2, "a": 2, "b": 3}])

0 commit comments

Comments
 (0)