tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.pyquery: disable failing tests
Martin Weinelt
8 months ago
77c68ec6
72163d70
+9
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pyquery
default.nix
+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"
0
0
0
0
0
0
60
];
61
62
meta = with lib; {
···
5
fetchPypi,
6
lxml,
7
pytestCheckHook,
0
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; {