We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b0da29b + c27028a commit 896f629Copy full SHA for 896f629
config/exercise_readme.go.tmpl
@@ -23,12 +23,18 @@ and remove the `#[ignore]` flag from the next test and get the tests to pass
23
again. Each separate test is a function with `#[test]` flag above it.
24
Continue, until you pass every test.
25
26
-If you wish to run all ignored tests without editing the tests source file, use:
+If you wish to run _only ignored tests_ without editing the tests source file, use:
27
28
```bash
29
$ cargo test -- --ignored
30
```
31
32
+If you are using Rust 1.51 or later, you can run _all tests_ with
33
+
34
+```bash
35
+$ cargo test -- --include-ignored
36
+```
37
38
To run a specific test, for example `some_test`, you can use:
39
40
0 commit comments