Fix CI to run doctests again (#5410)

The faster `cargo nextest` currently doesn't support running the doctests.

Thus, add an additional step for them with cargo's default test runner.

- Fix doctests for the `nu-pretty-hex` crate
This commit is contained in:
Stefan Holderbach
2022-05-02 11:32:57 +02:00
committed by GitHub
parent 7c9a78d922
commit 1ca3063ac3
2 changed files with 17 additions and 12 deletions

View File

@ -8,7 +8,7 @@
//!
//! ## Example of `simple_hex()`
//! ```
//! use pretty_hex::*;
//! use nu_pretty_hex::*;
//!
//! let v = vec![222, 173, 190, 239, 202, 254, 32, 24];
//! # #[cfg(feature = "alloc")]
@ -23,7 +23,7 @@
//! ```
//! ## Example of `pretty_hex()`
//! ```
//! use pretty_hex::*;
//! use nu_pretty_hex::*;
//!
//! let v = &include_bytes!("../tests/data");
//! # #[cfg(feature = "alloc")]
@ -40,7 +40,7 @@
//! ```
//! ## Example of `config_hex()`
//! ```
//! use pretty_hex::*;
//! use nu_pretty_hex::*;
//!
//! let cfg = HexConfig {title: false, width: 8, group: 0, ..HexConfig::default() };
//!