0

How can I test my app in django, so that it connects to my local database and does NOT require me to create a test database?

PaulG
  • 13,871
  • 9
  • 56
  • 78
charles
  • 361
  • 1
  • 5
  • 15

1 Answers1

0

Can't you specify the details of your development database in settings.py? This would connect you to the existing database and remove the need to create a new test instance.

hellsgate
  • 5,905
  • 5
  • 32
  • 47