pythonPackages.nose: remove also pyc file

This commit is contained in:
Domen Kozar 2014-03-10 08:58:55 +01:00
parent d23ea79667
commit 086afe9161

View file

@ -4147,7 +4147,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
rm functional_tests/test_multiprocessing/test_concurrent_shared.py* # see https://github.com/nose-devs/nose/commit/226bc671c73643887b36b8467b34ad485c2df062
${python}/bin/${python.executable} selftest.py
'';