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 ac38f7a commit cd64883Copy full SHA for cd64883
crates/xtask/src/main.rs
@@ -281,7 +281,12 @@ impl App {
281
pub(crate) fn into_ci_row(self, os: String) -> CiMatrixRow {
282
CiMatrixRow {
283
command: self.clone().into_command_string().into_string().unwrap(),
284
- name: format!("{} - {}", self.subcmd.as_ref(), self.global_args.features),
+ name: format!(
285
+ "{}({}) - {}",
286
+ self.subcmd.as_ref(),
287
+ os,
288
+ self.global_args.features
289
+ ),
290
os,
291
}
292
@@ -393,7 +398,7 @@ enum Xtasks {
393
398
package: Option<String>,
394
399
395
400
/// Run tests without coverage
396
- #[clap(long, short)]
401
+ #[clap(long, short = "nc")]
397
402
no_coverage: bool,
403
},
404
/// Perform a full check as it would be done in CI, except not parallelised
0 commit comments