Skip to content
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

Cargo check does not check doctests #6424

Open
jonhoo opened this issue Dec 12, 2018 · 12 comments
Open

Cargo check does not check doctests #6424

jonhoo opened this issue Dec 12, 2018 · 12 comments
Labels
A-doctests Area: rustdoc --test C-feature-request Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted` Command-check S-needs-team-input Status: Needs input from team on whether/how to proceed.

Comments

@jonhoo
Copy link
Contributor

jonhoo commented Dec 12, 2018

Problem
The command cargo check --all-targets does not compile doctests.

Steps

  1. Add a doctest to a project with a syntax error in it.
  2. Run cargo check --all-targets, which should "Check all targets" according to --help
  3. Observe that the error in the doctest is not reported.

Notes
I suspect this has been known for some time (#4592 (comment)). Combined with #5242, this means that there is no way to check the code in a doctest without running it (and using cargo test). From memory, I think that's because doctests are very different from all other code and tests, but I think it's surprising enough (I keep re-discovering this even now!) that it should probably be fixed.

Output of cargo version: cargo 1.32.0-nightly (b3d0b2e54 2018-11-15)

@alexcrichton alexcrichton added Command-check C-feature-request Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted` labels Dec 13, 2018
@dwijnand
Copy link
Member

dwijnand commented Feb 4, 2019

This is blocked on the lack of upstream (rustdoc) support for checking doc examples. I had a go looking, but I couldn't find an upstream issue tracking this.

@jyn514
Copy link
Member

jyn514 commented Jul 10, 2021

This is blocked on the lack of upstream (rustdoc) support for checking doc examples. I had a go looking, but I couldn't find an upstream issue tracking this.

Rustdoc implemented --no-run a few months ago; rust-lang/rust#87022 is the tracking issue (since today).

@gilescope
Copy link
Contributor

Anyone tempted to have a crack at integrating it?

@est31
Copy link
Member

est31 commented Jul 12, 2021

I would like to work on it, if nobody beats me to it. Can look into it next week or so.

@ehuss
Copy link
Contributor

ehuss commented Jul 12, 2021

There is a PR open to add this (#8859). I don't think --no-run is quite the same as --check. You could maybe ask Guillaume if they mind if you pick it back up.

@jyn514
Copy link
Member

jyn514 commented Jul 12, 2021

@ehuss --check isn't the same either - that checks the crate itself, not any of its doctests.

@jyn514
Copy link
Member

jyn514 commented Jul 12, 2021

I wonder if it makes sense to add an option to forward options to rustc verbatim, so you could pass --emit=metadata and things like that instead of needing a dedicated option for everything.

@ehuss
Copy link
Contributor

ehuss commented Jul 12, 2021

Ah, I misunderstood what --check does.

@ehuss
Copy link
Contributor

ehuss commented Jul 12, 2021

It seems like --no-run has an unfortunate interaction with compile_fail in that it still performs linking, which means you cannot check compile_fail tests (in a sense, they always fail, because the dependencies won't be available). I'm not sure if that's reason enough to not use that flag, but it is a concern.

Being able to pass arbitrary flags is certainly an option, but it introduces a compatibility hazard when you want to change the way rustdoc behaves in the future. For example, something like rust-lang/rust#50784 or rust-lang/rust#75341 could require fundamentally changing the way doctests work, and could introduce difficulties if users are passing flags that may not be compatible. It's certainly an option, but it would be nice if rustdoc could not leak its details too much.

I would expect the combination of rustdoc --check --test to check tests in a way similar to how cargo check works, and then that could just be added to a cargo check run somehow.

lambda-fairy added a commit to lambda-fairy/maud that referenced this issue Nov 29, 2021
Per rust-lang/cargo#6424, `cargo check` doesn't actually run the
doctests. So we need `cargo test` for this to work.
lambda-fairy added a commit to lambda-fairy/maud that referenced this issue Nov 29, 2021
Per rust-lang/cargo#6424, `cargo check` doesn't actually run the
doctests. So we need `cargo test` for this to work.
@epage epage added A-doctests Area: rustdoc --test S-needs-team-input Status: Needs input from team on whether/how to proceed. labels Oct 25, 2023
@epage
Copy link
Contributor

epage commented Oct 30, 2023

Of note, the issue requests

$ cargo check --all-targets

to check doctests.

Except doctests aren't quite a target. This shows up in cargo test where cargo test --all-targets doesn't test doctests, instead requiring a separate --doc flag which is mutually exclusive with build target flags. Following this model, we would at best support cargo check --doc which might still have some usefulness.

It would be interesting to find an alternative model that works for all of our needs but the trickiest need might be compatibility.

The other angle to this is mental models. As I said, doctests aren't quite a target. At least for myself, I've so tightly coupled them in my mind to an "extra" that testing does that I would find it odd to see a cargo check --doc flag (what does that even mean?). I think I'd more associate it with cargo doc but unsure what that would look like (turn the errors into diagnostics that are controllable?).

@gilescope
Copy link
Contributor

gilescope commented Oct 30, 2023 via email

@epage
Copy link
Contributor

epage commented Oct 30, 2023

--all is an existing, deprecated flag for --workspace.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-doctests Area: rustdoc --test C-feature-request Category: proposal for a feature. Before PR, ping rust-lang/cargo if this is not `Feature accepted` Command-check S-needs-team-input Status: Needs input from team on whether/how to proceed.
Projects
Status: No status
Development

No branches or pull requests

8 participants