From b4fc4e529f51837d343f2064f3a86f27cdf5e165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 3 Jul 2025 22:16:13 +0200 Subject: [PATCH] paperless-ngx: disable failing favicon tests --- pkgs/by-name/pa/paperless-ngx/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/pa/paperless-ngx/package.nix b/pkgs/by-name/pa/paperless-ngx/package.nix index 84e93dc8cb72..075efaee7d4d 100644 --- a/pkgs/by-name/pa/paperless-ngx/package.nix +++ b/pkgs/by-name/pa/paperless-ngx/package.nix @@ -294,6 +294,9 @@ python.pkgs.buildPythonApplication rec { "test_rtl_language_detection" # django.core.exceptions.FieldDoesNotExist: Document has no field named 'transaction_id' "test_convert" + # Favicon tests fail due to static file handling in the test environment + "test_favicon_view" + "test_favicon_view_missing_file" ]; doCheck = !stdenv.hostPlatform.isDarwin;