Skip to content Skip to sidebar Skip to footer

Running Nosetests On Module Locally Installed With Easy_install

I can't get nosetests to test a newly installed Python pandas library. I don't have root access to this machine, so I installed pandas locally with easy_install: $ easy_install --p

Solution 1:

had the same problem, I had to run this:

sudo nosetests /usr/lib64/python2.7/site-packages/pandas-0.14.0-py2.7-linux-x86_64.egg/pandas /tests/*.py

I do not have an explanation for it, but the results is:

Ran 4261 tests in 166.166s OK (SKIP=42)

Post a Comment for "Running Nosetests On Module Locally Installed With Easy_install"