We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Doctests are tricky because they are creating code, and binaries, on the fly.
This is important for
The text was updated successfully, but these errors were encountered:
As suspected, cargo test delegates to rustdoc for doctests, populating all the hard-to-discover flags :(
cargo test
rustdoc
https://github.com/rust-lang/cargo/blob/master/src/cargo/ops/cargo_test.rs#L129
Sorry, something went wrong.
The core logic seems to be at https://github.com/rust-lang/rust/blob/master/src/librustdoc/test.rs#L182
brson's work on skeptic might be reused to cover both skeptic and doctests
See budziq/rust-skeptic#18 (comment)
Looks like taurplin has taken a crack at solving the doctest problem
See xd009642/tarpaulin#13
crate-ci
No branches or pull requests
Doctests are tricky because they are creating code, and binaries, on the fly.
This is important for
The text was updated successfully, but these errors were encountered: