Skip to content

Commit

Permalink
restrict test
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg committed Nov 1, 2024
1 parent 27ec4f3 commit 2ea0d93
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ end

@testset "digits" begin
@testset "digits $((10^n) - 1)*10^$i" for n 1:9, i -9:9
(Sys.WORD_SIZE == 32 && n 9) && continue
y0 = 10^n
x0 = y0 - 1
x, y = (x0, y0) .* 10.0^i
Expand Down Expand Up @@ -319,10 +320,10 @@ end
end

if Sys.islinux() && VERSION v"1.11.0" && isempty(VERSION.prerelease) # avoid running on `nightly`
if (
if Sys.WORD_SIZE == 64 && (
!is_ci() ||
(is_ci() && get(ENV, "GITHUB_EVENT_NAME", "pull_request") == "pull_request")
) && Sys.WORD_SIZE == 64
)
@testset "downstream" begin
include("downstream.jl")
end
Expand Down

0 comments on commit 2ea0d93

Please sign in to comment.