| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-09-11 | Use `doc(hidden)` instead of `allow(missing_docs)` in the test harness | Olivier Goffart | -1/+3 | |
| So that it doesn't fail with `forbid(missing_docs)` Fixes #130218 | ||||
| 2024-09-11 | Fix false positive with `missing_docs` and `#[test]` | Olivier Goffart | -0/+3 | |
| Since #130025, the compiler don't ignore missing_docs when compiling the tests. But there is now a false positive warning for every `#[test]` For example, this code ```rust //! Crate docs fn just_a_test() {} ``` Would emit this warning when running `cargo test` ``` warning: missing documentation for a constant --> src/lib.rs:5:1 | 4 | #[test] | ------- in this procedural macro expansion 5 | fn just_a_test() {} | ^^^^^^^^^^^^^^^^^^^ ``` | ||||
| 2024-09-09 | Allow `missing_docs` lint on the generated test harness | Urgau | -0/+5 | |
