Hello,
I have a Django project with different apps and settings. Let's say settings A have A in INSTALLED_APPS but not B, and settings B have B in INSTALLED_APPS but not A. Note also that I cannot have both apps installed, for some reason.
In that configuration and from Django 1.9, ./manage.py test will always fail with the message :
RuntimeError: Model class <myapp.models.MyModel> doesn't declare an explicit app_label and either isn't in an application in INSTALLED_APPS or else was imported before its application was loaded.
Do we admit that for such type of projects, you always have to specify your app labels starting from Django 1.9?
Or did I miss some hidden trick to avoid that?
Claude