diff options
author | Florian Klink <flokli@flokli.de> | 2023-12-09T11·08+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-12-09T12·58+0000 |
commit | efaff795848a5ab20ded471f63bc02e5d1fb916a (patch) | |
tree | 8502f2ad222e0e8c263ebdab274f192546ed2826 /tvix/default.nix | |
parent | 22a669d27e6ceeea3ee557fad589fe882064ba44 (diff) |
feat(tvix): make clippy stricter r/7141
Also run clippy on tests, and enable all features. Change-Id: Ide9f1bc9f565333072afb918c391c7930b658f41 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10234 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/default.nix')
-rw-r--r-- | tvix/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/default.nix b/tvix/default.nix index f8dcfe3a9802..a6878f3c152c 100644 --- a/tvix/default.nix +++ b/tvix/default.nix @@ -213,7 +213,7 @@ in rustPlatform.cargoSetupHook ]; - buildPhase = "cargo clippy -- -Dwarnings | tee $out"; + buildPhase = "cargo clippy --tests --all-features -- -Dwarnings | tee $out"; }; meta.ci.targets = [ |