about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-08-18 10:54:46 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-08-18 11:48:40 +0200
commit57ef737629c3b88606345f51d5b87ef34158123a (patch)
treebbcdc5e113354771a2537c07ccd764ac6786b06d
parent9f6df9d960452ee31bc4c1c83f0ff55c3692e328 (diff)
downloadnixlib-57ef737629c3b88606345f51d5b87ef34158123a.tar
nixlib-57ef737629c3b88606345f51d5b87ef34158123a.tar.gz
nixlib-57ef737629c3b88606345f51d5b87ef34158123a.tar.bz2
nixlib-57ef737629c3b88606345f51d5b87ef34158123a.tar.lz
nixlib-57ef737629c3b88606345f51d5b87ef34158123a.tar.xz
nixlib-57ef737629c3b88606345f51d5b87ef34158123a.tar.zst
nixlib-57ef737629c3b88606345f51d5b87ef34158123a.zip
pythonPackages.bleach: disable a test
-rw-r--r--pkgs/development/python-modules/bleach/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/bleach/default.nix b/pkgs/development/python-modules/bleach/default.nix
index c2b0db61cbb3..7de124267f0e 100644
--- a/pkgs/development/python-modules/bleach/default.nix
+++ b/pkgs/development/python-modules/bleach/default.nix
@@ -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 = ''