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