I\'m not sure I\'m organizing my package structure correctly or am using the right options in setup.py because I\'m getting errors when I try to run unit tests.
I have a
Through some trial and error, I found the cause of this problem. Test names should match module names. If there is a "foo_test.py" test, there needs to be a corresponding module foo.py.
I found some guidelines on organizing package structure, which helped me reorganize my package into a structure I was confident in.