Unverified Commit bcf4eea3 authored by Maximilian Bosch's avatar Maximilian Bosch Committed by GitHub
Browse files

evcxr: skip test broken by rust 1.69 (#230089)

Closes #229524
See also https://github.com/evcxr/evcxr/issues/294

While it's unfortunate that unused variable warnings aren't detected
properly, the core functionality of the package is still fine, so let's
skip the test for now and wait until upstream figures out a solution.
parent 3cc6bda3
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -20,6 +20,13 @@ rustPlatform.buildRustPackage rec {
  buildInputs = lib.optionals stdenv.isDarwin
    [ libiconv CoreServices Security ];

  # test broken with rust 1.69:
  # * https://github.com/evcxr/evcxr/issues/294
  # * https://github.com/NixOS/nixpkgs/issues/229524
  checkFlags = [
    "--skip=check_for_errors"
  ];

  postInstall = let
    wrap = exe: ''
      wrapProgram $out/bin/${exe} \