We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecc9edd commit 2d763abCopy full SHA for 2d763ab
tools/ci/src/commands/test.rs
@@ -17,7 +17,9 @@ impl Prepare for TestCommand {
17
vec![PreparedCommand::new::<Self>(
18
cmd!(
19
sh,
20
- "cargo test --workspace --lib --bins --tests --benches {no_fail_fast}"
+ // Test most targets except for doc-tests, examples, and benchmarks. This is based
21
+ // of of the list at <https://doc.rust-lang.org/cargo/commands/cargo-test.html#target-selection>.
22
+ "cargo test --workspace --lib --bins --tests {no_fail_fast}"
23
),
24
"Please fix failing tests in output above.",
25
)]
0 commit comments