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 65
65
# force it to use this PR's version of the package
66
66
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
67
67
Pkg.update()
68
- Pkg.test(; coverage = true) # resolver may fail with test time deps
68
+ Pkg.test(; coverage = true, test_args=["--downstream_integration_test"] ) # resolver may fail with test time deps
69
69
catch err
70
70
err isa Pkg.Resolve.ResolverError || rethrow()
71
71
# 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 @@ -5,10 +5,12 @@ import Aqua
5
5
import Random
6
6
using Test
7
7
8
+ downstream_test = " --downstream_integration_test" in ARGS
8
9
@testset " Project quality" begin
9
10
Aqua. test_all (ArrayLayouts,
10
11
ambiguities = false ,
11
12
piracies = (; broken= true ),
13
+ stale_deps = ! downstream_test,
12
14
)
13
15
end
14
16
You can’t perform that action at this time.
0 commit comments