Skip to content

Commit 0d7240d

Browse files
authored
Fix #121: Add REPL to weakdepends in temp Manifest (#125)
1 parent ef6dd38 commit 0d7240d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/runner.jl

+6
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,12 @@ function make_testreports_environment(manifest)
9898
)
9999
)
100100
end
101+
102+
if VERSION >= v"1.11.0"
103+
# add REPL to Pkg weakdepends (https://github.com/JuliaTesting/TestReports.jl/issues/121#issuecomment-2413243321)
104+
new_manifest["deps"]["Pkg"][1]["weakdeps"] = Dict{String,Any}("REPL" => "3fa0cd96-eef1-5676-8a61-b3b8758bbffb")
105+
end
106+
101107
testreportsenv = mktempdir()
102108
open(joinpath(testreportsenv, "Project.toml"), "w") do io
103109
Pkg.TOML.print(io, new_project)

0 commit comments

Comments
 (0)