-
Notifications
You must be signed in to change notification settings - Fork 11
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
Crashing on Julia 1.11-rc1 #121
Comments
I'm also running into this issue on julia 1.11.0. |
TestReports.jl generates an invalid manifest when it creates the test manifest that it uses. The issue is: [[deps.Pkg]]
deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "Random", "SHA", "TOML", "Tar", "UUIDs", "p7zip_jll"]
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
version = "1.11.0"
weakdeps = ["REPL"]
[deps.Pkg.extensions]
REPLExt = "REPL" If there is no [[deps.Pkg]]
deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "Random", "SHA", "TOML", "Tar", "UUIDs", "p7zip_jll"]
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
version = "1.11.0"
[deps.Pkg.extensions]
REPLExt = "REPL"
[deps.Pkg.weakdeps]
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb" The Pkg project writer handles this but this package instead chooses to directly print the manifest dictionary which circumvents that. |
Hey, please can you see if this is fixed on the latest version ( |
I'm getting a similar error still:
|
The issue is in this function Lines 78 to 109 in ef6dd38
It creates TOML dictionaries and prints them but fails to uphold the requirements of a proper manifest (#121 (comment)). |
Was there every a workaround or update to this issue? Running into this after the Julia 1.11 update. |
@omus might have a fix |
We encountered the same problem. However, only if |
This is weird, but we do mess around with internals a lot |
Not weird, already explained in #121 (comment) and #121 (comment). |
I uploaded a hotfix PR, that implements the missing Manifest entry, as pointed out in #121 (comment) I also tried to provide a minimal working example in the PR #125 to trigger the issue here. |
Would be happy to see a PR that changes this to use the Pkg project writer (at least on v1.11+ or wherever that was introduced) |
Hey @mmiller-max . Any plans to merge @pjaap PR? Tks for you efforts and great work guys |
When I try to use TestReports.jl on Julia 1.11.0-rc1 (2024-06-25) I get a crash before any tests run. Here's what happens:
The text was updated successfully, but these errors were encountered: