django doctests not being run
I'm having a problem running django doctests with django-nose. Unit tests added to a /tests directory are running fine, but doctests are not. I am trying to run doctests on my "season" module: python manage.py test season and get this output: nosetests --verbosity 1 season --with-doctest Creating test database for alias 'default'... ---------------------------------------------------------------------- Ran 0 tests in 0.001s OK Destroying test database for alias 'default'... I'm just trying a basic doctest to try to get this to work, e.g.: """ >>> 1+1 == 2 True """ This is in my models.py. I've