python3Packages.pyquery: disable failing tests

+9 -4
+9 -4
pkgs/development/python-modules/pyquery/default.nix
··· 5 fetchPypi, 6 lxml, 7 pytestCheckHook, 8 - pythonAtLeast, 9 pythonOlder, 10 requests, 11 webob, ··· 54 "--deselect=tests/test_pyquery.py::TestWebScrappingEncoding::test_get" 55 ]; 56 57 - disabledTests = lib.optionals (pythonAtLeast "3.12") [ 58 - # https://github.com/gawel/pyquery/issues/249 59 - "pyquery.pyquery.PyQuery.serialize_dict" 60 ]; 61 62 meta = with lib; {
··· 5 fetchPypi, 6 lxml, 7 pytestCheckHook, 8 pythonOlder, 9 requests, 10 webob, ··· 53 "--deselect=tests/test_pyquery.py::TestWebScrappingEncoding::test_get" 54 ]; 55 56 + disabledTests = [ 57 + # broken in libxml 2.14 update 58 + # https://github.com/gawel/pyquery/issues/257 59 + "test_val_for_textarea" 60 + "test_replaceWith" 61 + "test_replaceWith_with_function" 62 + "test_get" 63 + "test_post" 64 + "test_session" 65 ]; 66 67 meta = with lib; {