Merge pull request #214665 from dotlambda/img2pdf-fix

python310Packages.img2pdf: skip failing tests

authored by Robert Schütz and committed by GitHub 5a0de6c1 10b0320b

+6 -2
+5 -2
pkgs/applications/graphics/ImageMagick/default.nix
··· 30 , Foundation 31 , testers 32 , imagemagick 33 }: 34 35 assert libXtSupport -> libX11Support; ··· 122 done 123 ''; 124 125 - passthru.tests.version = 126 - testers.testVersion { package = imagemagick; }; 127 128 meta = with lib; { 129 homepage = "http://www.imagemagick.org/";
··· 30 , Foundation 31 , testers 32 , imagemagick 33 + , python3 34 }: 35 36 assert libXtSupport -> libX11Support; ··· 123 done 124 ''; 125 126 + passthru.tests = { 127 + version = testers.testVersion { package = imagemagick; }; 128 + inherit (python3.pkgs) img2pdf; 129 + }; 130 131 meta = with lib; { 132 homepage = "http://www.imagemagick.org/";
+1
pkgs/development/python-modules/img2pdf/default.nix
··· 61 62 disabledTests = [ 63 "test_tiff_rgb" 64 ]; 65 66 pythonImportsCheck = [ "img2pdf" ];
··· 61 62 disabledTests = [ 63 "test_tiff_rgb" 64 + "test_png_gray1" # https://gitlab.mister-muffin.de/josch/img2pdf/issues/154 65 ]; 66 67 pythonImportsCheck = [ "img2pdf" ];