First use the following command to see the files scanned by nosetest:
nosetests -vv --collect-only
I previously found through this command that some files have the executable attribute and are therefore skipped. You can see if this is your problem. If so, just remove the executable attribute.
chmod 644 xxx.py
Or execute the test directly with the exe attribute, like this:
First use the following command to see the files scanned by nosetest:
nosetests -vv --collect-only
I previously found through this command that some files have the executable attribute and are therefore skipped. You can see if this is your problem. If so, just remove the executable attribute.
chmod 644 xxx.py
Or execute the test directly with the exe attribute, like this:
nosetests --exe
Refer to man nosetest