is `--tests` the same as `--all` except ignoring d...
# development
h
is
--tests
the same as
--all
except ignoring doctests?
a
--all
is picking which crates to build;
cargo test
will test everything that doesn’t need libfuse installed, and
cargo test --all
will test all of our crates (because we have a workspace with many crates)
The
--tests
is orthogonal to the crate selection