python311Packages.librouteros: suppress pytest8 warnings

This commit is contained in:
Martin Weinelt 2024-03-11 20:01:20 +01:00
parent b4e8d103e8
commit d1d648d2e1

View File

@ -30,6 +30,11 @@ buildPythonPackage rec {
pytestCheckHook
];
pytestFlagsArray = [
# pytest.PytestRemovedIn8Warning: Support for nose tests is deprecated and will be removed in a future release.
"-W" "ignore::pytest.PytestRemovedIn8Warning"
];
disabledTests = [
# Disable tests which require QEMU to run
"test_login"