Unverified Commit 4413ef0e authored by Martin Weinelt's avatar Martin Weinelt
Browse files

radicale2: Disable weak crypt htpasswd test

With our recent libxcrypt changes we don't support a lot of weak
algorithms any longer, which made this test fail.
parent 8422d0b6
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -26,8 +26,12 @@ python3.pkgs.buildPythonApplication rec {
  ];

  nativeCheckInputs = with python3.pkgs; [
    pytest-runner
    pytest
    pytestCheckHook
  ];

  disabledTests = [
    # uses unsupported crypt method
    "test_htpasswd_crypt"
  ];

  meta = with lib; {