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.
2 parents f369938 + 15ab571 commit 1f93213Copy full SHA for 1f93213
Project.toml
@@ -21,3 +21,10 @@ NonlinearProblemLibrary = "0.1"
21
ODEProblemLibrary = "1"
22
SDEProblemLibrary = "1"
23
julia = "1.10"
24
+
25
+[extras]
26
+ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
27
+Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
28
29
+[targets]
30
+test = ["ExplicitImports", "Test"]
test/runtests.jl
@@ -1,2 +1,9 @@
1
# The test is simply that all of the examples build!
2
using DiffEqProblemLibrary
3
+using ExplicitImports
4
+using Test
5
6
+@testset "ExplicitImports" begin
7
+ @test check_no_implicit_imports(DiffEqProblemLibrary) === nothing
8
+ @test check_no_stale_explicit_imports(DiffEqProblemLibrary) === nothing
9
+end
0 commit comments