We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4503b2 commit e0705e1Copy full SHA for e0705e1
2 files changed
test/enzyme.jl
@@ -3,8 +3,8 @@ using Test
3
using LinearAlgebra: Diagonal
4
using CUDA, AMDGPU
5
6
-BLASFloats = (Float64,) # full suite is too expensive on CI
7
-GenericFloats = (BigFloat,)
+BLASFloats = (Float64,ComplexF64) # full suite is too expensive on CI
+GenericFloats = () #(BigFloat,)
8
@isdefined(TestSuite) || include("testsuite/TestSuite.jl")
9
using .TestSuite
10
test/runtests.jl
@@ -25,7 +25,7 @@ if filter_tests!(testsuite, args)
25
delete!(testsuite, "codequality")
26
else
27
is_apple_ci = Sys.isapple() && get(ENV, "CI", "false") == "true"
28
- (Sys.iswindows() || is_apple_ci) && delete!(testsuite, "enzyme")
+ is_apple_ci && delete!(testsuite, "enzyme")
29
end
30
31
0 commit comments