pythonPackages.bleach: disable a test

This commit is contained in:
Frederik Rietdijk 2019-08-18 10:54:46 +02:00
parent 9f6df9d960
commit 57ef737629

View File

@ -23,6 +23,12 @@ buildPythonPackage rec {
substituteInPlace setup.py --replace ",<3dev" ""
'';
# Disable a test
# https://github.com/mozilla/bleach/issues/467
checkPhase = ''
pytest -k "not test_only_text_is_cleaned"
'';
meta = {
description = "An easy, HTML5, whitelisting HTML sanitizer";
longDescription = ''