Closed
Description
When running tests on travis, you usually want to enable all the features when running cargo test
. However this requires manually passing all non-default-features one-by-one. It is easy to forget one.
An option should be added to enable all the features.
The follow-up should be to submit a PR or open an issue to travis so that its engine runs cargo test --verbose --all-features
instead of just cargo test --verbose
by default.