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 4a54933 commit 21343abCopy full SHA for 21343ab
tests/fmt.rs
@@ -10,14 +10,6 @@ fn fmt() {
10
return;
11
}
12
13
- // Skip this test if nightly rustfmt is unavailable
14
- let rustup_output = Command::new("rustup").args(&["component", "list"]).output().unwrap();
15
- assert!(rustup_output.status.success());
16
- let component_output = String::from_utf8_lossy(&rustup_output.stdout);
17
- if !component_output.contains("rustfmt") {
18
- return;
19
- }
20
-
21
let root_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
22
let output = Command::new("cargo")
23
.current_dir(root_dir)
0 commit comments