-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Flag for stop interpreting code blocks as doctests #63193
Comments
You can already use something like |
Would it still get Rust's syntax highlight with |
Ah, good point. I don't think so. |
The issue with
it runs them. Hence, |
I was just googling to see about a solution to this very problem. I too have code that I don't want doctests run on for the very same reasons. I have never seen |
For what it's worth, for a code block in the doc comment, instead of starting it with
and somehow it seems to "work" in the sense that Some things I tried didn't work: obviously this is a horrible hack and probably happens to work for now because of some bug in rustdoc or whatever, but just sharing it here in case it's of interest to anyone :-) |
Does it make sense to consider a feature request for an |
@shreevatsa It seems the luck ran out on your trick there 🙂 |
It's pretty frustrating to have to choose between syntax highlighting and "this code is never to be compiled or tested regardless of flags" -- would be really nice to have a simple way to handle this seemingly common case |
I found a solution. It's a hack, but it works: /// Awesome function!
///
#[cfg_attr(doctest, doc = " ````no_test")]
/// ```
/// // Code that is syntax-highlighted, but not tested!
/// ````
pub fn documented_function() {} To understand how it works, you need to know the following:
Line 3 inserts |
Posting this here as well as #87586, since it's highly relevant to the OP here as well: I think My ideal state of the world:
Given current usage of
Footnotes
|
/// Broken code:
/// ```
/// panic!("...");
/// compile_error!("...");
/// ```
#[cfg(not(doctest))]
pub fn f() {
// ...
} |
This issue is super annoying. Here's a workaround I'm using: /// This doctest passes:
///
/// ```
/// # /*
/// x += y;
/// # */
/// ```
This interferes with syntax highlighting in my IDE, but the rendered docs are fine. |
Code blocks inside documentation are interpreted as doctests by default. Sometimes the code is not for testing at all (for example, writing pseudo-code for an algorithm), and we can add
ignore
at the beginning of the code block.However, even if
ignore
is added,cargo test
still interprets the code block as doctest, and prints "... ignored" on each occurrence ofignore
-tagged code blocks. In fact, those code blocks should not be interpreted as doctest, andcargo test
should silently ignore those code blocks.For example, the following code is a snippet of my current project.
cargo test
generates the following output:Is it possible to add a flag in the code block to suppress such "ignored" messages?
The text was updated successfully, but these errors were encountered: