Added
Support for --skip and --exact as emulated test binary arguments. The semantics match those of libtest binaries.
For example, to run all tests other than those matching the substring slow_tests:
cargo nextest run -- --skip slow_tests
To run all tests matching either the substring my_test or the exact string exact_test:
cargo nextest run -- my_test --exact exact_test
Thanks to svix-jplatte for your first contribution!