Skip to content

Commit

Permalink
Merge pull request #17 from terasakisatoshi/fix-ci-error
Browse files Browse the repository at this point in the history
  • Loading branch information
terasakisatoshi committed Jan 15, 2022
2 parents fd81002 + a68ed48 commit 75727f5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tracecompile.jl
@@ -1,10 +1,15 @@
using StatsPlots
using Plots
ENV["CI"] = true

if Sys.islinux()
ENV["GKSwstype"] = "100"
end

try
include(joinpath(pkgdir(Plots), "test", "runtests.jl"))
catch
@warn "runtests.jl for Plots failed"
catch e
@warn "runtests.jl for Plots failed with $(e)"
end
include(joinpath(pkgdir(StatsPlots), "test", "runtests.jl"))
ENV["CI"] = false

0 comments on commit 75727f5

Please sign in to comment.