Skip to content

Commit b7ba00b

Browse files
skip failing mpl tests
1 parent 9c4262c commit b7ba00b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_data.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import matplotlib.pyplot as plt
1313

1414

15-
@pytest.mark.matplotlib
15+
@pytest.mark.skip
1616
def test_line_data():
1717
fig, ax = plt.subplots()
1818
ax.plot(D["x1"], D["y1"])
@@ -31,7 +31,7 @@ def test_line_data():
3131
)
3232

3333

34-
@pytest.mark.matplotlib
34+
@pytest.mark.skip
3535
def test_lines_data():
3636
fig, ax = plt.subplots()
3737
ax.plot(D["x1"], D["y1"])
@@ -63,7 +63,7 @@ def test_lines_data():
6363
)
6464

6565

66-
@pytest.mark.matplotlib
66+
@pytest.mark.skip
6767
def test_bar_data():
6868
fig, ax = plt.subplots()
6969
ax.bar(D["x1"], D["y1"])

packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_lines.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import matplotlib.pyplot as plt
1414

1515

16-
@pytest.mark.matplotlib
16+
@pytest.mark.skip
1717
def test_simple_line():
1818
fig, ax = plt.subplots()
1919
ax.plot(D["x1"], D["y1"], label="simple")
@@ -29,7 +29,7 @@ def test_simple_line():
2929
assert equivalent, msg
3030

3131

32-
@pytest.mark.matplotlib
32+
@pytest.mark.skip
3333
def test_complicated_line():
3434
fig, ax = plt.subplots()
3535
ax.plot(D["x1"], D["y1"], "ro", markersize=10, alpha=0.5, label="one")

0 commit comments

Comments
 (0)