I'm using fixtures in my Django application but only two apps are getting their fixtures loaded.
When I manually run loaddata with --verbosity=2 I can see that it only looks in two apps although I have more with fixtures directories created inside.
All apps are correctly installed in settings.py.
From the documentation it seems that Django is supposed to search in the fixtures/ directory of every installed application.
Any ideas why some apps are ignored ?
You have to place fixture data in initial_data.[json|xml,...] file.
I think that only those files are loaded by default.
appdir/fixtures/initial_data.json