We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef6dd38 commit 0d7240dCopy full SHA for 0d7240d
src/runner.jl
@@ -98,6 +98,12 @@ function make_testreports_environment(manifest)
98
)
99
100
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
107
testreportsenv = mktempdir()
108
open(joinpath(testreportsenv, "Project.toml"), "w") do io
109
Pkg.TOML.print(io, new_project)
0 commit comments