python.pkgs.html5lib: disable certain tests

due to pytest change
This commit is contained in:
Frederik Rietdijk 2019-02-14 09:59:59 +01:00
parent f896d3b3ff
commit 72a680e122

View file

@ -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
'';