-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
[crater only] count crates that have more than five doctests on one item #134530
base: master
Are you sure you want to change the base?
[crater only] count crates that have more than five doctests on one item #134530
Conversation
rustbot has assigned @GuillaumeGomez. Use |
Looks good to me, thanks! Please start the crater run whenever you want. :) |
The job Click to see the possible cause of the failure (guessed by this bot)
|
@bors try |
…ater, r=<try> [crater only] count crates that have more than five doctests on one item Follow up for https://rust-lang.zulipchat.com/#narrow/channel/393423-t-rustdoc.2Fmeetings/topic/2024-12-09/near/487096843 cc `@camelid` `@GuillaumeGomez`
☀️ Try build successful - checks-actions |
@craterbot run mode=build-and-test |
👌 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
🚧 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
🚨 Report generation of 🆘 Can someone from the infra team check in on this? @rust-lang/infra |
@craterbot retry-report |
🛠️ Generation of the report for ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
🎉 Experiment
|
It looks like 0.64% of all crates known to crater have any items with more than five doctests. That's less than 1%. $ rg -l 'has more than five doctests' test-fail/ | wc -l
411
$ rg -l '.' test-fail/ | wc -l
63930
$ python3
Python 3.11.2 (main, Sep 14 2024, 03:00:30) [GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> (411.0 / 63930.0) * 100.0
0.6428906616611919 |
Follow up for https://rust-lang.zulipchat.com/#narrow/channel/393423-t-rustdoc.2Fmeetings/topic/2024-12-09/near/487096843
cc @camelid @GuillaumeGomez