File tree 2 files changed +3
-1
lines changed 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 69
69
# force it to use this PR's version of the package
70
70
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
71
71
Pkg.update()
72
- Pkg.test(; coverage = true) # resolver may fail with test time deps
72
+ Pkg.test(; coverage = true, test_args=["--downstream_integration_test"] ) # resolver may fail with test time deps
73
73
catch err
74
74
err isa Pkg.Resolve.ResolverError || rethrow()
75
75
# If we can't resolve that means this is incompatible by SemVer and this is fine
Original file line number Diff line number Diff line change 1
1
using Aqua
2
2
using FillArrays
3
3
using Test
4
+ downstream_test = " --downstream_integration_test" in ARGS
4
5
@testset " Project quality" begin
5
6
Aqua. test_all (FillArrays;
6
7
# https://github.com/JuliaArrays/FillArrays.jl/issues/105#issuecomment-1582516319
7
8
ambiguities= (; broken= true ),
9
+ stale_deps = ! downstream_test,
8
10
)
9
11
end
You can’t perform that action at this time.
0 commit comments