Weave.jl/test/runtests.jl

26 lines
595 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")
2015-01-09 13:17:56 +01:00
if VERSION.minor == 3
info("Test: Weaving with Winston")
include("winston_formats.jl")
2014-12-06 18:16:45 +01:00
2015-01-09 13:17:56 +01:00
info("Test: Weaving with Gadfly")
include("gadfly_formats.jl")
end
info("Test: Weaving with PyPlot")
include("pyplot_formats.jl")