Skip to content

Commit 491b3aa

Browse files
author
Frankie Robertson
committed
Use typo mode for JET --- more realistic since interfaces aren't supported yet
1 parent b30294d commit 491b3aa

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

test/jet.jl

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
using JET
2+
using Optim: Optim
23

34
@testset "JET checks" begin
4-
rep = report_package(ComputerAdaptiveTesting)
5+
rep = report_package(
6+
ComputerAdaptiveTesting;
7+
ignored_modules=(
8+
ComputerAdaptiveTesting.Comparison,
9+
ComputerAdaptiveTesting.PushVectors,
10+
Base.Broadcast,
11+
Optim
12+
),
13+
mode=:typo
14+
)
515
@show rep
6-
@test length(JET.get_reports(rep)) <= 43
16+
@test length(JET.get_reports(rep)) == 5
717
@test_broken length(JET.get_reports(rep)) == 0
818
end

0 commit comments

Comments
 (0)