As I dig into this, I've found that the problem is that the classes in
my models.py file are not being recognized as being from the module.
Specifically, the _from_module function in the DocTestFinder class in
_doctest.py is failing to identify the module as internal.
Upon closer inspection this statement (line 897 in _doctest.py)
returns false:
module.__name__ == object.__module__
When I print the values, they look like this:
print module.__name__
projectname.appname.models
print object.__module__
appname.models
So, I need to figure out why object.__module__ isn't providing the
full path.
Any ideas?
Dave