python313Packages.beautifulsoup4: disable failing tests (#412660)

authored by Martin Weinelt and committed by GitHub 72163d70 d3ba22f6

+8
+8
pkgs/development/python-modules/beautifulsoup4/default.nix
··· 68 pytestCheckHook 69 ] ++ lib.flatten (lib.attrValues optional-dependencies); 70 71 pythonImportsCheck = [ "bs4" ]; 72 73 passthru.tests = {
··· 68 pytestCheckHook 69 ] ++ lib.flatten (lib.attrValues optional-dependencies); 70 71 + disabledTests = [ 72 + # these tests fail with libxml 2.14.3 73 + # https://bugs.launchpad.net/beautifulsoup/+bug/2112242 74 + "test_real_xhtml_document" 75 + "test_processing_instruction" 76 + "test_out_of_range_entity" 77 + ]; 78 + 79 pythonImportsCheck = [ "bs4" ]; 80 81 passthru.tests = {