Skip to content

Commit 642f909

Browse files
authored
Skip Aqua stale deps check in downstream tests (#436)
1 parent 44ce472 commit 642f909

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/runtests.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
using BlockArrays, LinearAlgebra, Test
22

33
using Aqua
4+
downstream_test = "--downstream_integration_test" in ARGS
45
@testset "Project quality" begin
5-
Aqua.test_all(BlockArrays, ambiguities=false)
6+
Aqua.test_all(BlockArrays, ambiguities=false,
7+
stale_deps=!downstream_test)
68
end
79

810
using Documenter

0 commit comments

Comments
 (0)