From cdeea95bc0b102aa6319af4890cd0821f811ef4f Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 24 Oct 2024 17:04:43 +0200 Subject: [PATCH] paperless-ngx: disable failing tests These are due to a test-only dependency, so no functionality should be impaired. --- pkgs/applications/office/paperless-ngx/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/office/paperless-ngx/default.nix b/pkgs/applications/office/paperless-ngx/default.nix index b0e51f5a8e54..34549330a747 100644 --- a/pkgs/applications/office/paperless-ngx/default.nix +++ b/pkgs/applications/office/paperless-ngx/default.nix @@ -257,6 +257,10 @@ python.pkgs.buildPythonApplication rec { "testNormalOperation" # Something broken with new Tesseract and inline RTL/LTR overrides? "test_rtl_language_detection" + # Broke during the pytest-httpx 0.30.0 -> 0.32.0 upgrade + "test_request_pdf_a_format" + "test_generate_pdf_html_email" + "test_generate_pdf_html_email_merge_failure" ]; doCheck = !stdenv.hostPlatform.isDarwin;