In my Django application, I have a combination of doctrines (defined in models.py and views.py) and unit tests (defined in test.py. I can call a separate unit test by doing:
manage.py test app.TestCase
However, this does not seem to work for doctrines. Is there a way to run one doctrine (defined in models.py or views.py)?
source
share