i\'m starting the TDD development attitude and am writting unit-tests for my django application. I\'m aware of fixtures and know that\'s the way tests should be executed, bu
Not a good idea, but if you know what you are doing (basically breaking your production) you can check this setting:
https://docs.djangoproject.com/en/2.2/ref/settings/#test
DATABASES = { 'default': { ... 'TEST': { 'NAME': 'your prod db' } }