Skip to content

Commit

Permalink
Work around rust-lang/rust#131729
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Jan 15, 2025
1 parent f56c681 commit 94bbd2d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions necessist/tests/ci.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,9 @@ fn unmaintained() {

fn clippy_command(cargo_args: &[&str], rustc_args: &[&str]) -> Command {
let mut command = Command::new("cargo");
// smoelius: Remove `CARGO` environment variable to work around:
// https://github.com/rust-lang/rust/pull/131729
command.env_remove("CARGO");
command
.args(["+nightly", "clippy", "--all-features", "--all-targets"])
.args(cargo_args)
Expand Down

0 comments on commit 94bbd2d

Please sign in to comment.