1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2026-01-18 19:21:09 +00:00

docs(cargo): explain that platform specific tests aren't executed by default

This commit is contained in:
Sylvestre Ledru 2020-05-01 13:39:09 +02:00 committed by Roy Ivy III
parent 4c1774e918
commit dfb36897cc

View file

@ -215,6 +215,12 @@ Cargo:
$ cargo test
```
By default, `cargo test` only runs the common programs. To run also platform
specific tests, run:
```bash
$ cargo test --features unix
```
If you would prefer to test a select few utilities:
```bash
$ cargo test --features "chmod mv tail" --no-default-features