Python unittest discovery with subfolders
Consider using nose instead of the vanilla unittest
module, if you are able to switch. You won't need to mess around with your own test.py file or anything; a run of nosetests
will find and run all your tests.
Add __init__.py
in the import
and module
directories.