From a8171c902f61a4f620df469f1dbd9ea66cc1e36f Mon Sep 17 00:00:00 2001 From: Jishnu Bhattacharya Date: Tue, 3 Dec 2024 12:35:42 +0530 Subject: [PATCH] Skip Aqua stale deps check in downstream tests --- test/runtests.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index f6ce9823..8a87e547 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,8 +1,10 @@ using BlockArrays, LinearAlgebra, Test using Aqua +downstream_test = "--downstream_integration_test" in ARGS @testset "Project quality" begin - Aqua.test_all(BlockArrays, ambiguities=false) + Aqua.test_all(BlockArrays, ambiguities=false, + stale_deps=!downstream_test) end using Documenter