Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TestReports.test fails due to method error on checkinstalled! call #86

Closed
toollu opened this issue Mar 31, 2022 · 4 comments
Closed

TestReports.test fails due to method error on checkinstalled! call #86

toollu opened this issue Mar 31, 2022 · 4 comments

Comments

@toollu
Copy link

toollu commented Mar 31, 2022

0.4.0 on 1.7.1

The call to checkinstalled with ctx = Pkg.Types.Context does not work anymore since the signature of project_resolve!(ctx::Context, pkgspec::PackageSpec) in Pkg.jl has changed.

julia> TestReports.test("Foo")
ERROR: MethodError: no method matching project_resolve!(::Pkg.Types.Context, ::Vector{Pkg.Types.PackageSpec})
Closest candidates are:
  project_resolve!(::Pkg.Types.EnvCache, ::AbstractVector{Pkg.Types.PackageSpec}) at ~/programs/julia-1.7.1/share/julia/stdlib/v1.7/Pkg/src/Types.jl:796
Stacktrace:
 [1] checkinstalled!(ctx::Pkg.Types.Context, pkgspec::Pkg.Types.PackageSpec)
   @ TestReports ~/.julia/packages/TestReports/eCRre/src/runner.jl:54
 [2] test!(pkg::String, errs::Vector{AbstractString}, nopkgs::Vector{AbstractString}, notests::Vector{AbstractString}, logfilename::String; coverage::Bool, julia_args::Cmd, test_args::Cmd)
   @ TestReports ~/.julia/packages/TestReports/eCRre/src/runner.jl:176
 [3] test!(pkg::String, errs::Vector{AbstractString}, nopkgs::Vector{AbstractString}, notests::Vector{AbstractString}, logfilename::String)
   @ TestReports ~/.julia/packages/TestReports/eCRre/src/runner.jl:171
 [4] test(pkgs::Vector{String}; logfilename::Vector{String}, logfilepath::String, kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
   @ TestReports ~/.julia/packages/TestReports/eCRre/src/runner.jl:283
 [5] #test#7
   @ ~/.julia/packages/TestReports/eCRre/src/runner.jl:159 [inlined]
 [6] test(pkg::String)
   @ TestReports ~/.julia/packages/TestReports/eCRre/src/runner.jl:159
 [7] top-level scope
   @ REPL[4]:1

@toollu
Copy link
Author

toollu commented Mar 31, 2022

possibly since Pkg 1.6.1 and issue most likely related to #84

@mmiller-max
Copy link
Member

Sorry not sure how I missed this! Thanks for reporting, I'll take a look.

@mmiller-max
Copy link
Member

This should be handled by these lines:

@static if v"1.4.0" <= VERSION < v"1.7.0"
var = ctx
else
var = ctx.env
end

If you upgrade to the latest TestReports (v0.6.4) then this should no longer be an issue.

@mmiller-max
Copy link
Member

If you upgrade to the latest TestReports (v0.6.4) then this should no longer be an issue.

Assuming that this solved it, please feel free to re-open if not.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants