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.
1 parent 7b8dfd0 commit 11400d9Copy full SHA for 11400d9
test/qa.jl
@@ -7,7 +7,12 @@ using Optimization, Aqua
7
treat_as_own = [OptimizationProblem,
8
Optimization.SciMLBase.AbstractOptimizationCache])
9
Aqua.test_project_extras(Optimization)
10
- Aqua.test_stale_deps(Optimization)
+ if VERSION > 1.10
11
+ # in CI we need to dev packages to run the tests
12
+ # which adds stale deps
13
+ # on later versions [sources] is used instead
14
+ Aqua.test_stale_deps(Optimization)
15
+ end
16
Aqua.test_unbound_args(Optimization)
17
Aqua.test_undefined_exports(Optimization)
18
end
0 commit comments