python311Packages.cssutils: suppress pytest8 warnings

This commit is contained in:
Martin Weinelt 2024-03-11 18:44:23 +01:00
parent 9db2f84f0a
commit 730b5ddcad

View File

@ -42,6 +42,11 @@ buildPythonPackage rec {
importlib-resources
];
pytestFlagsArray = [
# pytest.PytestRemovedIn8Warning: Support for nose tests is deprecated and will be removed in a future release.
"-W" "ignore::pytest.PytestRemovedIn8Warning"
];
disabledTests = [
# access network
"test_parseUrl"