Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ChainRulesCore = "0.9.44, 0.10, 1"
ChainRulesTestUtils = "0.6.8, 0.7, 1"
ExplicitImports = "1.13.2"
IrrationalConstants = "0.1, 0.2"
JET = "0.9, 0.10"
JET = "0.9, 0.12"
LogExpFunctions = "0.3.2, 1"
OpenLibm_jll = "0.7, 0.8"
OpenSpecFun_jll = "0.5"
Expand Down
12 changes: 7 additions & 5 deletions test/qa.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,12 @@ end
@test ExplicitImports.check_no_self_qualified_accesses(SpecialFunctions) === nothing
end

@testset "JET" begin
# Check that there are no undefined global references and undefined field accesses
JET.test_package(SpecialFunctions; target_defined_modules = true, mode = :typo)
if VERSION < v"1.12" || JET.JET_AVAILABLE
@testset "JET" begin
# Check that there are no undefined global references and undefined field accesses
JET.test_package(SpecialFunctions; target_modules = (SpecialFunctions,), mode = :typo)

# Analyze methods based on their declared signature
JET.report_package(SpecialFunctions; target_defined_modules = true)
# Analyze methods based on their declared signature
JET.report_package(SpecialFunctions; target_modules = (SpecialFunctions,))
end
end
Loading