radicale: suppress pytest8 deprecation warnings

This commit is contained in:
Martin Weinelt 2024-03-11 19:17:52 +01:00
parent 8e7e2723e6
commit 6151db5288

View file

@ -44,6 +44,11 @@ python3.pkgs.buildPythonApplication rec {
waitress
];
pytestFlagsArray = [
# pytest.PytestRemovedIn8Warning: Support for nose tests is deprecated and will be removed in a future release.
"-W" "ignore::pytest.PytestRemovedIn8Warning"
];
passthru.tests = {
inherit (nixosTests) radicale;
};