문제

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 ?

도움이 되었습니까?

해결책

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 ?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top