Skip to content

Commit 25357ea

Browse files
committed
Remove (bugggy) no-tests workarounds
The no-coverage-report special case hid real coverage build failures unintentionally.
1 parent b655b3f commit 25357ea

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

nix/checks.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
strictDeps = true;
2929
cargoArtifacts = deps;
3030
CARGO_PROFILE = profile;
31-
cargoNextestExtraArgs = "--no-tests=warn";
3231
};
3332

3433
testChecks = pkgs.lib.concatMapAttrs (
@@ -51,7 +50,7 @@
5150
nativeBuildInputs = [ pkgs.cargo-llvm-cov ];
5251
buildPhaseCargoCommand = ''
5352
mkdir -p $out
54-
cargo llvm-cov nextest --no-tests=warn --all-features --lcov --output-path $out/coverage.lcov
53+
cargo llvm-cov --all-features --lcov --output-path $out/coverage.lcov
5554
cargo llvm-cov report --fail-under-regions 100
5655
'';
5756
installPhase = "true";

0 commit comments

Comments
 (0)