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 e1098a0 commit 1e93411Copy full SHA for 1e93411
src/bootstrap/src/core/build_steps/test.rs
@@ -399,6 +399,15 @@ impl Step for RustAnalyzer {
399
// takes effect,
400
401
cargo.add_rustc_lib_path(builder);
402
+
403
+ // NOTE: we need to skip `src/tools/rust-analyzer/xtask` as they seem to exercise rustup /
404
+ // stable rustfmt.
405
+ //
406
+ // NOTE: you can only skip a specific workspace package via `--skip=...` if you *also*
407
+ // specify `--workspace`.
408
+ cargo.arg("--workspace");
409
+ cargo.arg("--exclude=xtask");
410
411
run_cargo_test(
412
cargo,
413
&[
0 commit comments