this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build(nix): remove code coverage from nix flake check

+6 -2
+6 -2
flake.nix
··· 83 83 cmprss-fmt = craneLib.cargoFmt commonArgs; 84 84 85 85 # Build code coverage helper that uses llvm-cov 86 - cmprss-llvm-cov = craneLib.cargoLlvmCov commonArgs; 86 + #cmprss-llvm-cov = craneLib.cargoLlvmCov commonArgs; 87 87 88 88 # Run tests with cargo-nextest 89 89 # Note: This provides limited value, as tests are already run in the build ··· 97 97 } 98 98 // lib.optionalAttrs (system == "x86_64-linux") { 99 99 # Check code coverage with tarpaulin runs 100 - cmprss-tarpaulin = craneLib.cargoTarpaulin commonArgs; 100 + #cmprss-tarpaulin = craneLib.cargoTarpaulin commonArgs; 101 101 } 102 102 // { 103 103 # Run formatting checks before commit ··· 141 141 deadnix 142 142 nodePackages.prettier 143 143 alejandra 144 + 145 + # Code coverage 146 + cargo-tarpaulin 147 + cargo-llvm-cov 144 148 ]; 145 149 146 150 # Many tools read this to find the sources for rust stdlib