Skip to content

Commit

Permalink
update Aqua tests
Browse files Browse the repository at this point in the history
  • Loading branch information
schillic committed Nov 8, 2024
1 parent 1ecc50a commit ec683a4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/Aqua.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,10 @@ using RangeEnclosures, Test
import Aqua

@testset "Aqua tests" begin
Aqua.test_all(RangeEnclosures)
if VERSION >= v"1.7"
Aqua.test_all(RangeEnclosures)
else
# some tests fail in v1.6 due to problems in SDPA
Aqua.test_all(RangeEnclosures; stale_deps=false, deps_compat=false)
end
end

0 comments on commit ec683a4

Please sign in to comment.