trigger tests for Plots.jl and Gadfly.jl only on CI

pull/354/head
Shuhei Kadowaki 2020-05-25 10:14:45 +09:00
parent 542f3e3225
commit e9c9274896
1 changed files with 11 additions and 8 deletions

View File

@ -54,23 +54,26 @@ macro jmd_str(s) mock_doc(s) end
include("rich_output.jl")
end
@testset "Plots" begin
include("plotsjl_test.jl")
end
@testset "Cache" begin
include("cache_test.jl")
end
@testset "Gadfly" begin
include("gadfly_formats.jl")
end
# @testset "Notebooks" begin
# @info("Testing Jupyter options")
# include("notebooks.jl")
# end
# trigger only on CI
get(ENV, "CI", nothing) == "true" && begin
@testset "Plots" begin
include("plotsjl_test.jl")
end
@testset "Gadfly" begin
include("gadfly_formats.jl")
end
end
try
@testset "end2end (maybe fail)" begin
include("end2end.jl")