From 3eb983fbfb2674652533c4c9ebb4b8810d8b0a35 Mon Sep 17 00:00:00 2001 From: Michael Abbott <32575566+mcabbott@users.noreply.github.com> Date: Sat, 4 Jan 2025 18:10:38 -0500 Subject: [PATCH] let's risk one more round of CI why not --- test/gradcheck.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/gradcheck.jl b/test/gradcheck.jl index aa2fe6d80..054ed240c 100644 --- a/test/gradcheck.jl +++ b/test/gradcheck.jl @@ -114,7 +114,7 @@ end @test gradtest(X -> sum(sum(x -> x^2, X; dims=1)), randn(10)) # issue #681 # Non-differentiable sum of booleans - @test_skip gradient(sum, [true, false, true]) == (nothing,) # fine locally, fails on buidkite? + @test gradient(sum, [true, false, true]) == (nothing,) @test gradient(x->sum(x .== 0.0), [1.2, 0.2, 0.0, -1.1, 100.0]) == (nothing,) # https://github.com/FluxML/Zygote.jl/issues/314