Domanda

In django fixtures dirs, I have the file initial_data.json with some data for database.

in some test, I need a empty database, but when I make

python manage.py test 

the initial_data files are loaded.

How I can ignore the initial_data.json in test ?

È stato utile?

Soluzione

Why not rename them to not be called initial_data to avoid the auto-loading during tests and then only load them manually in your dev process when required using ./manage.py loaddata ?

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top