pythonPackages.coloredlogs: disable impure tests

This commit is contained in:
Jonathan Ringer 2019-10-17 14:57:48 -07:00 committed by Frederik Rietdijk
parent 1e8150a26a
commit 3161b8b914

View file

@ -19,7 +19,8 @@ buildPythonPackage rec {
});
checkPhase = ''
PATH=$PATH:$out/bin pytest . -k "not test_plain_text_output_format"
PATH=$PATH:$out/bin pytest . -k "not test_plain_text_output_format \
and not test_auto_install"
'';
checkInputs = [ pytest mock utillinux ];