-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(BracketingNonlinearSolve): qq using Aqua and ExplicitImports
- Loading branch information
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@testitem "Aqua" tags=[:core] begin | ||
using Aqua, BracketingNonlinearSolve | ||
|
||
Aqua.test_all(BracketingNonlinearSolve; piracies = false, ambiguities = false) | ||
Aqua.test_piracies(BracketingNonlinearSolve; treat_as_own = [IntervalNonlinearProblem]) | ||
Aqua.test_ambiguities(BracketingNonlinearSolve; recursive = false) | ||
end | ||
|
||
@testitem "Explicit Imports" tags=[:core] begin | ||
import ForwardDiff | ||
using ExplicitImports, BracketingNonlinearSolve | ||
|
||
@test check_no_implicit_imports(BracketingNonlinearSolve; skip = (Base, Core)) === nothing | ||
@test check_no_stale_explicit_imports(BracketingNonlinearSolve) === nothing | ||
@test check_all_qualified_accesses_via_owners(BracketingNonlinearSolve) === nothing | ||
end |