Weave.jl/test/runtests.jl

35 lines
830 B
Julia
Raw Normal View History

using Weave
using Base.Test
2014-12-06 18:16:45 +01:00
# Running Changin plotlib in tests segfault, unless they are run
# using separate processes.
#run(`julia --code-coverage=user -e 'include("winston_formats.jl")'`)
#run(`julia --code-coverage=user -e 'include("pyplot_formats.jl")'`)
info("Test: Chunk options")
include("chunk_options.jl")
info("Test: Caching")
include("cache_test.jl")
info("Testing rich output")
include("rich_output.jl")
if VERSION < v"0.5-dev"
info("Test: Chunk options with Gadfly")
include("chunk_opts_gadfly.jl")
2016-04-27 21:10:56 +02:00
#Fails on travis, works locally.
#info("Test: Weaving with Winston")#
#include("winston_formats.jl")
info("Test: Weaving with Gadfly")
include("gadfly_formats.jl")
2016-04-11 19:34:36 +02:00
info("Test: Weaving with PyPlot")
include("pyplot_formats.jl")
info("Test: Weaving with Plots.jl")
include("plotsjl_test.jl")
end