File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
name : matplotlib
2
- version : 0.7.3
2
+ version : 0.7.4
3
3
synopsis : Bindings to Matplotlib; a Python plotting library
4
4
description :
5
5
Matplotlib is probably the most full featured plotting library out there.
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ main'' = do
116
116
, toneDownTests " Unreliable across machines" $ tests " Golden tests" testPlotGolden]
117
117
118
118
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,
120
120
ignoreTest $ failingTests f]
121
121
122
122
toneDownTests reason tests = wrapTest (liftM (\ x -> x { resultOutcome = Success
@@ -191,7 +191,6 @@ basicTests f = testGroup "Basic tests"
191
191
, f " quiver-fancy" mquiverFancy
192
192
, f " polar" mpolar
193
193
, f " bivariateNormal" mbivariateNormal
194
- , f " images" mimages
195
194
, f " pcolorlog" mpcolorlog
196
195
, f " pie" mpie
197
196
, f " stacked" mstacked
@@ -207,6 +206,8 @@ fragileTests f = testGroup "Fragile tests"
207
206
, f " violinplot" mviolinplot
208
207
-- TODO Needs a fairly recent matplotlib; too old for circleci
209
208
, f " griddata" mgriddata
209
+ -- TODO Needs access to a data file
210
+ , f " images" mimages
210
211
]
211
212
212
213
failingTests f = testGroup " Failing tests"
You can’t perform that action at this time.
0 commit comments