Skip to content

Commit a3a8933

Browse files
committed
add stale_deps exception to Aqua tests
1 parent 7b7b752 commit a3a8933

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

test/Aqua.jl

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,12 @@ using ReachabilityBase, Test
22
import Aqua
33

44
@testset "Aqua tests" begin
5-
Aqua.test_all(ReachabilityBase)
5+
# Requires is only used in old versions
6+
@static if VERSION >= v"1.9"
7+
stale_deps = (ignore=[:Requires],)
8+
else
9+
stale_deps = true
10+
end
11+
12+
Aqua.test_all(ReachabilityBase; stale_deps=stale_deps)
613
end

0 commit comments

Comments
 (0)