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"
22
22
ForwardDiffStaticArraysExt = " StaticArrays"
23
23
24
24
[compat ]
25
+ Aqua = " 0.8"
25
26
Calculus = " 0.5"
26
27
CommonSubexpressions = " 0.3"
27
28
DiffResults = " 1.1"
28
29
DiffRules = " 1.4"
29
30
DiffTests = " 0.1"
31
+ InteractiveUtils = " 1"
32
+ LinearAlgebra = " 1"
30
33
LogExpFunctions = " 0.3"
31
34
NaNMath = " 1"
32
35
Preferences = " 1"
36
+ Printf = " 1"
37
+ Random = " 1"
38
+ SparseArrays = " 1"
33
39
SpecialFunctions = " 1, 2"
34
40
StaticArrays = " 1.5"
41
+ Test = " 1"
35
42
julia = " 1.6"
36
43
37
44
[extras ]
Original file line number Diff line number Diff line change @@ -2,12 +2,14 @@ using Test
2
2
using ForwardDiff
3
3
using Aqua
4
4
5
- @testset " Aqua tests (performance) " begin
5
+ @testset " Aqua tests - unbound_args " begin
6
6
# This tests that we don't accidentally run into
7
7
# https://github.com/JuliaLang/julia/issues/29393
8
8
ua = Aqua. detect_unbound_args_recursively (ForwardDiff)
9
9
@test length (ua) == 6
10
+ end
10
11
12
+ @testset " Aqua tests - ambiguities" begin
11
13
# See: https://github.com/SciML/OrdinaryDiffEq.jl/issues/1750
12
14
# Test that we're not introducing method ambiguities across deps
13
15
ambs = Aqua. detect_ambiguities (ForwardDiff; recursive = true )
@@ -18,13 +20,8 @@ using Aqua
18
20
@test length (ambs) == 0
19
21
end
20
22
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 )
28
25
end
29
26
30
27
nothing
You can’t perform that action at this time.
0 commit comments