File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -114,10 +114,12 @@ end
114114 bundle = " bundle.nomanifest"
115115 bundle_env = joinpath (pkg1, bundle)
116116 out = tempname ()
117- @test_logs (:warn ,) JuliaHub. _PackageBundler. bundle (
117+ # Using match_mode=:any, since it's possible for the Pkg operations to produce other additional
118+ # log messages, breaking the tests.
119+ @test_logs (:warn ,) match_mode = :any JuliaHub. _PackageBundler. bundle (
118120 bundle_env;
119121 output= out,
120- verbose= false ,
122+ verbose= false
121123 )
122124 dir = mktempdir ()
123125 Tar. extract (out, dir)
169171 bundle = " bundle.noenv"
170172 bundle_env = joinpath (pkg1, bundle)
171173 out = tempname ()
172- @test_logs (:warn ,) JuliaHub. _PackageBundler. bundle (
174+ # Using match_mode=:any, since it's possible for the Pkg operations to produce other additional
175+ # log messages, breaking the tests.
176+ @test_logs (:warn ,) match_mode = :any JuliaHub. _PackageBundler. bundle (
173177 bundle_env;
174178 output= out,
175179 verbose= false ,
You can’t perform that action at this time.
0 commit comments