Today I spent a bunch of doctrines using Python 2.6 on Ubuntu 9.10 with a nose:
nosetests --with-doctest Ran 0 tests in 0.001s OK
WTF? I had tests in these files, why didn't it work?
I changed the resolution to 644:
sudo chmod 644 * -R nosetests --with-doctest Ran 11 test in 0.004s FAILED (errors=1)
Change it to 777:
sudo chmod 777 * -R nosetests --with-doctest Ran 0 tests in 0.001s OK
Why? Using 644, I canβt even edit my files!
python permissions doctest nose
e-satis
source share