Skip to content

Commit

Permalink
extended test
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg committed Dec 25, 2023
1 parent 20c4ba9 commit fceb370
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/downstream.jl
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ using Plots
end
end

extended = tryparse(Bool, get(ENV, "CI", "false")) === false # extended test locally
extended = tryparse(Bool, get(ENV, "CI", "false")) === true # extended test in CI

deploy_Makie(extended)
@testset "downstream Makie" begin
Expand Down
9 changes: 4 additions & 5 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -304,16 +304,15 @@ end
end

if Sys.islinux() && VERSION v"1.9.0"
@testset "adaptive" begin
@testset "downstream" begin
withenv("GKSwstype" => "nul") do
include("adaptive_test_functions.jl")
include("downstream.jl")
end
@test true
end

@testset "downstream" begin
@testset "adaptive" begin # NOTE: must be ran after downstream test (for Plots)
withenv("GKSwstype" => "nul") do
include("downstream.jl")
include("adaptive_test_functions.jl")
end
@test true
end
Expand Down

0 comments on commit fceb370

Please sign in to comment.