python - Launch django unittest with a new database -


the question in title.

how can run unit tests manage.py test command line without having type yes if old test database hasn't been destroyed(this happens when tests aborted).

thanks

try using --noinput option (--no-input alternative alias in django 1.9+).

./manage.py test --noinput 

Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -