Skip to content

Commit 5e62b50

Browse files
committed
Don't try to run ContourPlot tests if skimage is not available
1 parent 7eeb838 commit 5e62b50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/builtin/drawing/test_plot_detail.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@
102102
vectorized = [
103103
("complexplot", "ComplexPlot[Exp[I z],{z,-2-2 I,2+2 I}]", opt2, True),
104104
("complexplot3d", "ComplexPlot3D[Exp[I z],{z,-2-2 I,2+2 I}]", opt3, True),
105-
("contourplot-1", "ContourPlot[x^2-y^2,{x,-2,2},{y,-2,2}]", opt2, True),
106-
("contourplot-2", "ContourPlot[x^2+y^2==1,{x,-2,2},{y,-2,2}]", opt2, True),
105+
("contourplot-1", "ContourPlot[x^2-y^2,{x,-2,2},{y,-2,2}]", opt2, skimage),
106+
("contourplot-2", "ContourPlot[x^2+y^2==1,{x,-2,2},{y,-2,2}]", opt2, skimage),
107107
]
108108

109109
# both vectorized and non-vectorized available

0 commit comments

Comments
 (0)