python.pkgs.datashape: disable several tests

This commit is contained in:
Frederik Rietdijk 2018-03-10 12:29:43 +01:00
parent 4d62ada05d
commit 5c1c6a3071

@ -31,8 +31,10 @@ in buildPythonPackage rec {
checkInputs = [ pytest mock ];
propagatedBuildInputs = [ numpy multipledispatch dateutil ];
# Disable several tests
# https://github.com/blaze/datashape/issues/232
checkPhase = ''
py.test datashape/tests
py.test -k "not test_validate and not test_nested_iteratables and not test_validate_dicts and not test_tuples_can_be_records_too" datashape/tests
'';
meta = {