1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-09-14 19:16:17 +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