From 6d71209af30e6cde6d31a7539e44daa8397b96b9 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 25 Sep 2019 11:44:09 +0200 Subject: [PATCH] pythonPackages.weasyprint: disable test Needs an extra font for that test --- pkgs/development/python-modules/weasyprint/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/weasyprint/default.nix b/pkgs/development/python-modules/weasyprint/default.nix index bac3e9b77b54..f112d6f15557 100644 --- a/pkgs/development/python-modules/weasyprint/default.nix +++ b/pkgs/development/python-modules/weasyprint/default.nix @@ -26,10 +26,10 @@ buildPythonPackage rec { version = "50"; disabled = !isPy3k; - # ignore failing test cases + # excluded test needs the Ahem font checkPhase = '' runHook preCheck - pytest -k 'not test_table_vertical_align and not test_text_overflow_ellipsis and not test_text_overflow_clip' + pytest -k 'not test_font_stretch' runHook postCheck '';