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 9170ca3 commit 64a9f56Copy full SHA for 64a9f56
src/main.rs
@@ -86,10 +86,9 @@ where
86
})
87
.map(|p| ("CARGO_TARGET_DIR", p));
88
89
- // Run the dogfood tests directly on nightly cargo. This is required due
90
- // to a bug in rustup.rs when running cargo on custom toolchains. See issue #3118.
+ // Don't run the dogfood tests on beta
91
if std::env::var_os("CLIPPY_DOGFOOD").is_some() && cfg!(windows) {
92
- args.insert(0, "+nightly".to_string());
+ return Ok(())
93
}
94
95
let exit_status = std::process::Command::new("cargo")
0 commit comments