Skip to content

Commit c8f88b9

Browse files
authored
Skip Aqua stale deps check in downstream tests (#355)
1 parent 6a503fb commit c8f88b9

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
@@ -5,8 +5,10 @@ import LazyArrays: CachedArray, colsupport, rowsupport, LazyArrayStyle, broadcas
55
import ArrayLayouts: OnesLayout
66

77
using Aqua
8+
downstream_test = "--downstream_integration_test" in ARGS
89
@testset "Project quality" begin
9-
Aqua.test_all(LazyArrays, ambiguities=false, piracies=false)
10+
Aqua.test_all(LazyArrays, ambiguities=false, piracies=false,
11+
stale_deps=!downstream_test)
1012
end
1113

1214
@testset "Lazy MemoryLayout" begin

0 commit comments

Comments
 (0)