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 1e7cf1d commit bc67537Copy full SHA for bc67537
test/runtests.jl
@@ -15,7 +15,22 @@ elseif test_name == "jet"
15
using JET
16
using DynamicExpressions
17
if VERSION >= v"1.10"
18
- JET.test_package(DynamicExpressions; target_defined_modules=true)
+ struct MyReport end
19
+ function JET.configured_reports(
20
+ ::MyReport, reports::Vector{JET.InferenceErrorReport}
21
+ )
22
+ filter!(reports) do report
23
+ signature = report.sig
24
+ return !any(
25
+ x -> occursin("NonDifferentiableDeclarationsModule", string(x)),
26
+ signature,
27
28
+ end
29
+ return reports
30
31
+ JET.test_package(
32
+ DynamicExpressions; target_defined_modules=true, report_config=MyReport()
33
34
end
35
36
elseif test_name == "main"
0 commit comments