1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

pythonPackages.keystoneclient: Fix bogus 'doCheck' value

This commit is contained in:
Tuomas Tynkkynen 2016-09-01 20:21:26 +03:00
parent f0206aba5e
commit 255c9de6ef

View file

@ -23715,7 +23715,10 @@ in modules // {
patchPhase = ''
sed -i 's@python@${python.interpreter}@' .testr.conf
'';
doCheck = ''
doCheck = true;
checkPhase = ''
patchShebangs run_tests.sh
./run_tests.sh
'';