Further edits to mention of --include-ignored, propagate to src

This commit is contained in:
Carol (Nichols || Goulding) 2021-12-26 20:30:17 -05:00
parent 649f46856d
commit 1721a106f7
No known key found for this signature in database
GPG Key ID: E907EE5A736F87D4
2 changed files with 4 additions and 4 deletions

View File

@ -1172,9 +1172,8 @@ test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 1 filtered out; fini
By controlling which tests run, you can make sure your `cargo test` results
will be fast. When youre at a point where it makes sense to check the results
of the `ignored` tests and you have time to wait for the results, you can run
`cargo test -- --ignored` instead.
If you want to run all test, not just the `ignored` tests, you can run `cargo test -- --include-ignored`.
`cargo test -- --ignored` instead. If you want to run all tests whether theyre
ignored or not, you can run `cargo test -- --include-ignored`.
## Test Organization

View File

@ -180,4 +180,5 @@ the ignored tests, we can use `cargo test -- --ignored`:
By controlling which tests run, you can make sure your `cargo test` results
will be fast. When youre at a point where it makes sense to check the results
of the `ignored` tests and you have time to wait for the results, you can run
`cargo test -- --ignored` instead.
`cargo test -- --ignored` instead. If you want to run all tests whether theyre
ignored or not, you can run `cargo test -- --include-ignored`.