We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47341ad commit 9136cb6Copy full SHA for 9136cb6
test/base/aqua.jl
@@ -4,8 +4,11 @@ using Aqua
4
let ambs = Aqua.detect_ambiguities(CUDA; recursive=true)
5
pkg_match(pkgname, pkgdir::Nothing) = false
6
pkg_match(pkgname, pkgdir::AbstractString) = occursin(pkgname, pkgdir)
7
- filter!(x -> pkg_match("CUDA", pkgdir(last(x).module)), ambs)
8
- @test length(ambs) ≤ 18
+
+ # StaticArrays pirates a bunch of Random stuff...
9
+ filter!(x -> !pkg_match("StaticArrays", pkgdir(first(x).module)), ambs)
10
11
+ @test length(ambs) ≤ 15
12
end
13
14
Aqua.test_all(CUDA;
0 commit comments