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
7 changes: 7 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,10 @@ NonlinearProblemLibrary = "0.1"
ODEProblemLibrary = "1"
SDEProblemLibrary = "1"
julia = "1.10"

[extras]
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["ExplicitImports", "Test"]
7 changes: 7 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# The test is simply that all of the examples build!
using DiffEqProblemLibrary
using ExplicitImports
using Test

@testset "ExplicitImports" begin
@test check_no_implicit_imports(DiffEqProblemLibrary) === nothing
@test check_no_stale_explicit_imports(DiffEqProblemLibrary) === nothing
end
Loading