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 a988c75 commit 7be7d07Copy full SHA for 7be7d07
test/runtests.jl
@@ -54,7 +54,11 @@ println("Testing ChainRules.jl")
54
55
@testset "packages" begin
56
include_test("rulesets/packages/NaNMath.jl")
57
- include_test("rulesets/packages/SpecialFunctions.jl")
+ # Note: drop SpecialFunctions dependency in next breaking release
58
+ # https://github.com/JuliaDiff/ChainRules.jl/issues/319
59
+ if !isdefined(SpecialFunctions, :ChainRulesCore)
60
+ include_test("rulesets/packages/SpecialFunctions.jl")
61
+ end
62
end
63
println()
64
0 commit comments