Skip to content

Commit

Permalink
more restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg committed Nov 1, 2024
1 parent 432d902 commit 73b31aa
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -321,14 +321,18 @@ end
@test stats.time < 1e-3 # ~ 0.22ms (on 1.9)
end

if Sys.islinux() && VERSION v"1.11.0" && isempty(VERSION.prerelease) # avoid running on `nightly`
if is_64b() && (
if (
Sys.islinux() &&
VERSION v"1.11.0" &&
isempty(VERSION.prerelease) && # avoid running on `nightly`
is_64b() &&
(
!is_ci() ||
(is_ci() && get(ENV, "GITHUB_EVENT_NAME", "pull_request") == "pull_request")
)
@testset "downstream" begin
include("downstream.jl")
end
)
@testset "downstream" begin
include("downstream.jl")
end
@testset "adaptive" begin # NOTE: must be ran after downstream test (for Plots)
withenv("GKSwstype" => "nul") do
Expand Down

0 comments on commit 73b31aa

Please sign in to comment.