about summary refs log tree commit diff
path: root/pkgs/development/python-modules/html5lib
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-02-14 09:59:59 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-02-17 14:40:48 +0100
commit72a680e12236e4660a3eed755bbbc968ae91ab3d (patch)
tree5fc490ba9495f5adcdc7807ca213c94aa341b5ba /pkgs/development/python-modules/html5lib
parentf896d3b3ff5b2a9af17f8e162256f0f5114d2190 (diff)
python.pkgs.html5lib: disable certain tests
due to pytest change
Diffstat (limited to 'pkgs/development/python-modules/html5lib')
-rw-r--r--pkgs/development/python-modules/html5lib/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/html5lib/default.nix b/pkgs/development/python-modules/html5lib/default.nix
index 97d2854ca226b..5a59b63cea417 100644
--- a/pkgs/development/python-modules/html5lib/default.nix
+++ b/pkgs/development/python-modules/html5lib/default.nix
@@ -24,6 +24,9 @@ buildPythonPackage rec {
   ];
 
   checkPhase = ''
+    # remove test causing error
+    # https://github.com/html5lib/html5lib-python/issues/411
+    rm html5lib/tests/test_stream.py
     py.test
   '';