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 06d3784 commit 2732f66Copy full SHA for 2732f66
test/runtests.jl
@@ -61,12 +61,9 @@ include("tensors.jl")
61
include("diagonal.jl")
62
include("planar.jl")
63
# TODO: remove once we know AD is slow on macOS CI
64
-test_ad = try
65
- !(Sys.isapple() && ENV["CI"] == "true")
66
-catch
67
- true
+if !(Sys.isapple() && get(ENV, "CI", "false") == "true")
+ include("ad.jl")
68
end
69
-test_ad && include("ad.jl")
70
include("bugfixes.jl")
71
Tf = time()
72
printstyled("Finished all tests in ",
0 commit comments