Skip to content

Commit e0705e1

Browse files
committed
Turn off BigFloats for now
1 parent e4503b2 commit e0705e1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

test/enzyme.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ using Test
33
using LinearAlgebra: Diagonal
44
using CUDA, AMDGPU
55

6-
BLASFloats = (Float64,) # full suite is too expensive on CI
7-
GenericFloats = (BigFloat,)
6+
BLASFloats = (Float64,ComplexF64) # full suite is too expensive on CI
7+
GenericFloats = () #(BigFloat,)
88
@isdefined(TestSuite) || include("testsuite/TestSuite.jl")
99
using .TestSuite
1010

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if filter_tests!(testsuite, args)
2525
delete!(testsuite, "codequality")
2626
else
2727
is_apple_ci = Sys.isapple() && get(ENV, "CI", "false") == "true"
28-
(Sys.iswindows() || is_apple_ci) && delete!(testsuite, "enzyme")
28+
is_apple_ci && delete!(testsuite, "enzyme")
2929
end
3030
end
3131

0 commit comments

Comments
 (0)