pythonPackages.nose: skip failing test

This commit is contained in:
Domen Kožar 2014-01-02 23:38:27 +01:00
parent 3ef95f0582
commit ddda0dfc60

View File

@ -3922,6 +3922,7 @@ pythonPackages = modules // import ./python-packages-generated.nix {
checkPhase = if python.is_py3k or false then ''
${python}/bin/${python.executable} setup.py build_tests
'' else "" + ''
rm functional_tests/test_multiprocessing/test_concurrent_shared.py # see https://github.com/nose-devs/nose/commit/226bc671c73643887b36b8467b34ad485c2df062
${python}/bin/${python.executable} selftest.py
'';