Skip to content

Commit 6222b08

Browse files
committed
don't aqua dev versions
1 parent c1e0f42 commit 6222b08

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/grouptests.jl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ const START_TIME = time()
1212
end
1313

1414
@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part2"
15-
using Aqua
16-
@time Aqua.test_all(LoopVectorization, ambiguities = false)
17-
# @test isempty(detect_unbound_args(LoopVectorization))
15+
if VERSION.prerelease[1] != "DEV"
16+
using Aqua
17+
@time Aqua.test_all(LoopVectorization, ambiguities = false)
18+
end
19+
@test isempty(detect_unbound_args(LoopVectorization))
1820

1921
@time include("printmethods.jl")
2022

0 commit comments

Comments
 (0)