Skip to content

Commit 1eed27f

Browse files
committed
Auto merge of #6575 - flip1995:stop_linting_deps, r=Manishearth
Change env var used for testing Clippy This changes the variable used for testing Clippy in the internal test suite: ``` CLIPPY_TESTS -> __CLIPPY_INTERNAL_TESTS ``` `CLIPPY_TESTS` is understandably used in environments of Clippy users, so we shouldn't use it in our test suite. changelog: Fix oversight which caused Clippy to lint deps in some environments. Once again fixes #3874
2 parents 583715f + 547ce0d commit 1eed27f

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

doc/adding_lints.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,14 @@ add `// edition:2018` at the top of the test file (note that it's space-sensitiv
147147

148148
Manually testing against an example file can be useful if you have added some
149149
`println!`s and the test suite output becomes unreadable. To try Clippy with
150-
your local modifications, run `env CLIPPY_TESTS=true cargo run --bin
151-
clippy-driver -- -L ./target/debug input.rs` from the working copy root.
150+
your local modifications, run
152151

153-
With tests in place, let's have a look at implementing our lint now.
152+
```
153+
env __CLIPPY_INTERNAL_TESTS=true cargo run --bin clippy-driver -- -L ./target/debug input.rs
154+
```
155+
156+
from the working copy root. With tests in place, let's have a look at
157+
implementing our lint now.
154158

155159
## Lint declaration
156160

src/driver.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ pub fn main() {
298298
// - IF Clippy is run on the main crate, not on deps (`!cap_lints_allow`) THEN
299299
// - IF `--no-deps` is not set (`!no_deps`) OR
300300
// - IF `--no-deps` is set and Clippy is run on the specified primary package
301-
let clippy_tests_set = env::var("CLIPPY_TESTS").map_or(false, |val| val == "true");
301+
let clippy_tests_set = env::var("__CLIPPY_INTERNAL_TESTS").map_or(false, |val| val == "true");
302302
let cap_lints_allow = arg_value(&orig_args, "--cap-lints", |val| val == "allow").is_some();
303303
let in_primary_package = env::var("CARGO_PRIMARY_PACKAGE").is_ok();
304304

tests/compile-test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ fn run_ui_cargo(config: &mut compiletest::Config) {
254254

255255
fn prepare_env() {
256256
set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
257-
set_var("CLIPPY_TESTS", "true");
257+
set_var("__CLIPPY_INTERNAL_TESTS", "true");
258258
//set_var("RUST_BACKTRACE", "0");
259259
}
260260

0 commit comments

Comments
 (0)