You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as explored in #1 - we tried using mdbook as the nice rust-native markdown book webpage generator for its killer feature: being able to run doc tests.
unfortunately, the feature as it stands is extremely limited: rust-lang/mdBook#706 , and the book ui also leaves a lot to be desired.
therefore, this is an exploration issue (possibly for the far future) to find a way to do this externally.
some potentials:
having a docs/SUMMARY.md + book.toml present in the repo just for doc tests (if they fix 706)
create a local crate with doc-comment pull-ins / rust-skeptic that's tested via cargo test --doc on ci here
i explored the latter approach within kube-rs repo a few months ago and found it very painful (needed a lot of doc comments that cannot be hidden except through shell hackery - which did not work for the root README.md)
The text was updated successfully, but these errors were encountered:
as explored in #1 - we tried using mdbook as the nice rust-native markdown book webpage generator for its killer feature: being able to run doc tests.
unfortunately, the feature as it stands is extremely limited: rust-lang/mdBook#706 , and the book ui also leaves a lot to be desired.
therefore, this is an exploration issue (possibly for the far future) to find a way to do this externally.
some potentials:
docs/SUMMARY.md
+book.toml
present in the repo just for doc tests (if they fix 706)cargo test --doc
on ci herei explored the latter approach within kube-rs repo a few months ago and found it very painful (needed a lot of doc comments that cannot be hidden except through shell hackery - which did not work for the root README.md)
The text was updated successfully, but these errors were encountered: