I\'ve written a series of tests for my Django app, and would like to run them on a copy of my production database.
As far as I can tell, the best way to do this is using
You didn't mention which version of Django you're using, but looking at the 1.11 documentation:
fixtures
subdirectories, it can also look in directories defined in FIXTURE_DIRS.It's not clear from the 1.11 docs about fixture loading for tests whether they would also look in FIXTURE_DIRS, though. So this might not solve your problem entirely.