Merge pull request #354 from JunoLab/avi/onlyci

trigger tests for Plots.jl and Gadfly.jl only on CI
pull/357/head
Shuhei Kadowaki 2020-05-25 10:55:06 +09:00 committed by GitHub
commit 3d4f04902c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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")