I didn't even need to use the debugger. I just ran with --verbosity 3,
and it showed me all the places it looked for fixtures files.
Strangely, it did not look for a fixtures dir immediately off my app's
main dir, but it looked for one everywhere else. My app is called
motor, and it lives in /usr/local/motor/motor. I had the initial_data
file in /usr/local/motor/motor/fixtures, and here is where it looked:
Checking '/usr/local/motor/motor/../motor/ui/fixtures' for fixtures...
Checking '/usr/local/motor/motor/../motor/dispatch/fixtures' for fixtures...
Checking '/usr/local/motor/motor/../motor/core/data/fixtures' for fixtures...
Checking '/usr/local/motor/motor/../motor/core/reports/fixtures' for fixtures...
Checking '/usr/local/motor/motor/../motor/core/alerts/fixtures' for fixtures...
Checking '/usr/local/motor/motor/../motor/app/semvision/fixtures' for
fixtures...
Checking '/usr/local/motor/motor/../motor/app/cdsem/fixtures' for fixtures...
Checking '/usr/local/motor/motor/../motor/app/developer/fixtures' for
fixtures...
I would have thought it would have looked in
/usr/local/motor/motor/fixtures. The reason it worked on my devel
system is that had I FIXTURE_DIRS set in my setting file, back from
when I was testing with the YAML files.
In any case, I'll just move the file to core/data/fixtures.