Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
minimal tests for the readme trying to follow: https://blog.guillaume-gomez.fr/articles/2021-08-03+Improvements+for+%23%5Bdoc%5D+attributes+in+Rust
adds a fake module under
integration
:and then tries to get
cargo test --doc --all
to not complaininvestigation thoughts irrelevant now
it gave me errors when i didn't have enough features on kube in the integration crate where i stashed it, but after that it doesn't complain about anything anymore :(
maybe it just doesn't parse the inline code blocks ...
maybe we need to use doc_comment instead like tokio. that is a heavily deprecated crate though..
EDIT: turns out it "works" with
cargo test --doc --all
...