python313Packages.readabilipy: disable failing tests (#431705)

authored by Fabian Affolter and committed by GitHub bd74a8e8 81ef6422

+15 -3
+15 -3
pkgs/development/python-modules/readabilipy/default.nix
··· 44 dontNpmBuild = true; 45 }; 46 47 - nativeBuildInputs = [ setuptools ]; 48 49 - propagatedBuildInputs = [ 50 beautifulsoup4 51 html5lib 52 lxml ··· 75 "tests/test_benchmarking.py" 76 ]; 77 78 passthru = { 79 tests.version = testers.testVersion { 80 package = readabilipy; ··· 85 86 meta = with lib; { 87 description = "HTML content extractor"; 88 - mainProgram = "readabilipy"; 89 homepage = "https://github.com/alan-turing-institute/ReadabiliPy"; 90 changelog = "https://github.com/alan-turing-institute/ReadabiliPy/blob/${src.tag}/CHANGELOG.md"; 91 license = licenses.mit; 92 maintainers = with maintainers; [ fab ]; 93 }; 94 }
··· 44 dontNpmBuild = true; 45 }; 46 47 + build-system = [ setuptools ]; 48 49 + dependencies = [ 50 beautifulsoup4 51 html5lib 52 lxml ··· 75 "tests/test_benchmarking.py" 76 ]; 77 78 + disabledTests = [ 79 + # IndexError: list index out of range 80 + "test_html_blacklist" 81 + "test_prune_div_with_one_empty_span" 82 + "test_prune_div_with_one_whitespace_paragraph" 83 + "test_empty_page" 84 + "test_contentless_page" 85 + "test_extract_title" 86 + "test_iframe_containing_tags" 87 + "test_iframe_with_source" 88 + ]; 89 + 90 passthru = { 91 tests.version = testers.testVersion { 92 package = readabilipy; ··· 97 98 meta = with lib; { 99 description = "HTML content extractor"; 100 homepage = "https://github.com/alan-turing-institute/ReadabiliPy"; 101 changelog = "https://github.com/alan-turing-institute/ReadabiliPy/blob/${src.tag}/CHANGELOG.md"; 102 license = licenses.mit; 103 maintainers = with maintainers; [ fab ]; 104 + mainProgram = "readabilipy"; 105 }; 106 }