removed plotly tests

This commit is contained in:
Thomas Breloff 2016-04-29 17:00:56 -04:00
parent 672bf05856
commit 8c8ede361e
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ end
# uses wkhtmltopdf/wkhtmltoimage: http://wkhtmltopdf.org/downloads.html # uses wkhtmltopdf/wkhtmltoimage: http://wkhtmltopdf.org/downloads.html
function html_to_png(html_fn, png_fn, w, h) function html_to_png(html_fn, png_fn, w, h)
run(`wkhtmltoimage -q --width $w --height $h --disable-smart-width $html_fn $png_fn`) run(`wkhtmltoimage -f png -q --width $w --height $h --disable-smart-width $html_fn $png_fn`)
end end
function writemime_png_from_html(io::IO, plt::AbstractPlot) function writemime_png_from_html(io::IO, plt::AbstractPlot)

View File

@ -37,8 +37,8 @@ facts("Plotly") do
@fact plotly() --> Plots.PlotlyBackend() @fact plotly() --> Plots.PlotlyBackend()
@fact backend() --> Plots.PlotlyBackend() @fact backend() --> Plots.PlotlyBackend()
# until png generation is reliable on OSX, just test on linux # # until png generation is reliable on OSX, just test on linux
@linux_only image_comparison_facts(:plotly, only=[1,3,4,7,8,9,10,11,12,14,15,20,22,23,27], eps=img_eps) # @linux_only image_comparison_facts(:plotly, only=[1,3,4,7,8,9,10,11,12,14,15,20,22,23,27], eps=img_eps)
end end