Unverified Commit 0bcaa8a4 authored by Keegan Carruthers-Smith's avatar Keegan Carruthers-Smith Committed by GitHub
Browse files

python310Packages.readability-lxml: disable broken test on darwin (#250407)



* python310Packages.readability-lxml: disable broken test on darwin

This test is broken on darwin. The test is fixed in master for
readability-lxml, but the fix requires pulling in a few dependencies
which are not packaged in nixpkgs.

* Update pkgs/development/python-modules/readability-lxml/default.nix

Co-authored-by: default avatarOTABI Tomoya <tomoya.otabi@gmail.com>

---------

Co-authored-by: default avatarOTABI Tomoya <tomoya.otabi@gmail.com>
parent 6433bbe3
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -31,8 +31,12 @@ buildPythonPackage rec {
    timeout-decorator
  ];

  disabledTests = lib.optionals stdenv.isDarwin [
    # Test is broken on darwin. Fix in master from https://github.com/buriy/python-readability/pull/178
    "test_many_repeated_spaces"
  ];

  meta = with lib; {
    broken = stdenv.isDarwin;
    description = "Fast python port of arc90's readability tool";
    homepage = "https://github.com/buriy/python-readability";
    license = licenses.asl20;