Why is there no django nose in my models?

I am trying to use django-nose doctrines. All my doctrines work, with the exception of not any doctrines inside the model (if it is not abstract).

class TestModel1(models.Model): """ >>> print 'pass' pass """ pass class TestModel2(models.Model): """ >>> print 'pass' pass """ class Meta: abstract = True pass 

The first lesson does not start, but the second does. Why is this?

+1
source share
1 answer

Do you have a chance to bite? http://github.com/jbalogh/django-nose/issues/2 If yes, try updating django-nose

0
source

Source: https://habr.com/ru/post/1334123/


All Articles