RS.CLIPPY.IGNORE_WITHOUT_REASON

Ignored tests without messages

This checker is a Clippy lint created by The Rust Project Contributors. The documentation shown here is a copy of the original documentation for: ignore_without_reason. Copyright ©2025 The Rust Team. All rights reserved.

What it does

Checks for ignored tests without messages.

Why is this bad?

The reason for ignoring the test may not be obvious.

Example

#[test]
#[ignore]
fn test() {}

Use instead:

#[test]
#[ignore = "Some good reason"]
fn test() {}