File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -215,17 +215,29 @@ end
215
215
@testset " Aqua.jl" begin
216
216
# We do not test ambiguities since we get a lot of
217
217
# false positives from dependencies.
218
+ ambiguities = false
218
219
# The persistent_tasks test fails in the Downgrade CI
219
220
# action but not in regular CI - we just skip it there.
220
221
if ! isempty (get (ENV , " POSITIVEINTEGRATORS_DOWNGRADE_CI" , " " ))
221
222
persistent_tasks = false
222
223
else
223
224
persistent_tasks = true
224
225
end
226
+ # The stale_deps test fails in the Downstream CI action
227
+ # of OrdinaryDiffEq.jl but not in our regular CI - we just
228
+ # skip it there.
229
+ if ! isempty (get (ENV , " GROUP" , " " ))
230
+ @info " Skipping stale_deps tests from Aqua.jl"
231
+ stale_deps = false
232
+ else
233
+ @info " Running stale_deps tests from Aqua.jl"
234
+ stale_deps = true
235
+ end
225
236
Aqua. test_all (PositiveIntegrators;
226
- ambiguities = false ,
237
+ ambiguities = ambiguities ,
227
238
piracies = (; treat_as_own = [RecipesBase. apply_recipe],),
228
- persistent_tasks = persistent_tasks,)
239
+ persistent_tasks = persistent_tasks,
240
+ stale_deps = stale_deps,)
229
241
end
230
242
231
243
@testset " ExplicitImports.jl" begin
You can’t perform that action at this time.
0 commit comments