python2Packages.jinja2: disable tests, pytest no longer filters warnings

This commit is contained in:
Jonathan Ringer
2021-11-30 18:52:53 -08:00
parent 0d420cc9cb
commit 253a56ff91
+2 -1
View File
@@ -21,7 +21,8 @@ buildPythonPackage rec {
# Multiple tests run out of stack space on 32bit systems with python2.
# See https://github.com/pallets/jinja/issues/1158
doCheck = !stdenv.is32bit || isPy3k;
# warnings are no longer being filtered correctly for python2
doCheck = !stdenv.is32bit && isPy3k;
checkPhase = ''
pytest -v tests -W ignore::DeprecationWarning