Skip to content

Commit e0be724

Browse files
committed
mark one more test as optional
1 parent 9159a22 commit e0be724

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

matplotlib.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: matplotlib
2-
version: 0.7.3
2+
version: 0.7.4
33
synopsis: Bindings to Matplotlib; a Python plotting library
44
description:
55
Matplotlib is probably the most full featured plotting library out there.

test/Spec.hs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ main'' = do
116116
, toneDownTests "Unreliable across machines" $ tests "Golden tests" testPlotGolden]
117117

118118
tests name f = testGroup name [basicTests f,
119-
toneDownTests "Can fail with old matplotlib" $ fragileTests f,
119+
toneDownTests "Can fail with old matplotlib or data" $ fragileTests f,
120120
ignoreTest $ failingTests f]
121121

122122
toneDownTests reason tests = wrapTest (liftM (\x -> x { resultOutcome = Success
@@ -191,7 +191,6 @@ basicTests f = testGroup "Basic tests"
191191
, f "quiver-fancy" mquiverFancy
192192
, f "polar" mpolar
193193
, f "bivariateNormal" mbivariateNormal
194-
, f "images" mimages
195194
, f "pcolorlog" mpcolorlog
196195
, f "pie" mpie
197196
, f "stacked" mstacked
@@ -207,6 +206,8 @@ fragileTests f = testGroup "Fragile tests"
207206
, f "violinplot" mviolinplot
208207
-- TODO Needs a fairly recent matplotlib; too old for circleci
209208
, f "griddata" mgriddata
209+
-- TODO Needs access to a data file
210+
, f "images" mimages
210211
]
211212

212213
failingTests f = testGroup "Failing tests"

0 commit comments

Comments
 (0)