File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,23 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2222ForwardDiffStaticArraysExt = " StaticArrays"
2323
2424[compat ]
25+ Aqua = " 0.8"
2526Calculus = " 0.5"
2627CommonSubexpressions = " 0.3"
2728DiffResults = " 1.1"
2829DiffRules = " 1.4"
2930DiffTests = " 0.1"
31+ InteractiveUtils = " 1"
32+ LinearAlgebra = " 1"
3033LogExpFunctions = " 0.3"
3134NaNMath = " 1"
3235Preferences = " 1"
36+ Printf = " 1"
37+ Random = " 1"
38+ SparseArrays = " 1"
3339SpecialFunctions = " 1, 2"
3440StaticArrays = " 1.5"
41+ Test = " 1"
3542julia = " 1.6"
3643
3744[extras ]
Original file line number Diff line number Diff line change @@ -2,12 +2,14 @@ using Test
22using ForwardDiff
33using Aqua
44
5- @testset " Aqua tests (performance) " begin
5+ @testset " Aqua tests - unbound_args " begin
66 # This tests that we don't accidentally run into
77 # https://github.com/JuliaLang/julia/issues/29393
88 ua = Aqua. detect_unbound_args_recursively (ForwardDiff)
99 @test length (ua) == 6
10+ end
1011
12+ @testset " Aqua tests - ambiguities" begin
1113 # See: https://github.com/SciML/OrdinaryDiffEq.jl/issues/1750
1214 # Test that we're not introducing method ambiguities across deps
1315 ambs = Aqua. detect_ambiguities (ForwardDiff; recursive = true )
@@ -18,13 +20,8 @@ using Aqua
1820 @test length (ambs) == 0
1921end
2022
21- @testset " Aqua tests (additional)" begin
22- Aqua. test_undefined_exports (ForwardDiff)
23- Aqua. test_stale_deps (ForwardDiff)
24- Aqua. test_deps_compat (ForwardDiff)
25- Aqua. test_project_extras (ForwardDiff)
26- Aqua. test_project_toml_formatting (ForwardDiff)
27- Aqua. test_piracy (ForwardDiff)
23+ @testset " Aqua tests - remaining" begin
24+ Aqua. test_all (ForwardDiff; ambiguities = false , unbound_args = false )
2825end
2926
3027nothing
You can’t perform that action at this time.
0 commit comments