Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore doctests in 'test' step on CI
The CI step for `cargo test` runs all tests _and_ doctests at the same time, followed by `cargo test --doc` which runs just doctests. This actually means we have been running doctests twice when we only intend to run them once. This adds an explicit command of `cargo test --lib --bins --tests` to run all tests _except_ the doctests, so that the doctests can run separately with `cargo test --doc`.
- Loading branch information