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 2974509 commit 7924462Copy full SHA for 7924462
test/runtests.jl
@@ -15,12 +15,20 @@ import LinearAlgebra: BLAS
15
@info sprint(versioninfo)
16
@info BLAS.get_config()
17
18
+# FIXME https://github.com/JuliaTesting/Aqua.jl/issues/343
19
+piracies = if hasfield(Core.TypeName, :mt)
20
+ (;treat_as_own=[GLM.wrkresp!, Base.:|])
21
+else
22
+ @warn "Piracy testing disabled until Aqua.jl#343 is resolved"
23
+ false
24
+end
25
+
26
@testset "Aqua" begin
27
# we can't check for unbound type parameters
28
# because we actually need one at one point for _same_family()
29
Aqua.test_all(MixedModels; ambiguities=false, unbound_args=false,
30
# XXX TODO: upstream this piracy
- piracies=(;treat_as_own=[GLM.wrkresp!, Base.:|]))
31
+ piracies)
32
end
33
34
@testset "ExplicitImports" begin
0 commit comments