Skip to content Skip to sidebar Skip to footer

Error Running Nosetests

I recently reinstalled nose to run tests on my code. https://nose.readthedocs.org/en/latest/ I used sudo pip install nose and went to my project folder. The response is -bash:

Solution 1:

So, the way I've made it work is by specifically downloading nose-parameterized

sudo pip install nose-parameterized

Previously nose would work in the project's directory, but the trials would always be very quick. For example,

Ran 0 tests in 0.002s

I'm more confused now than previously. Why would I have to download nose-parameterized individually?

Solution 2:

I don't have any experience with MacPorts python but I know that Homebrew installs python using a completely different site-packages setup than the OS X provided versions. From the looks of your error messages, it looks like you were mixing a matching the system pip and the ports python which could be the cause of your issue.

Post a Comment for "Error Running Nosetests"