Django checks dump data / results

When I run django tests via manage.py test , is there a way to output the result to a text file?

+7
source share
1 answer

in linux, you can do this:

 python manage.py test > stdout.txt 2> stderr.txt 

to redirect output to files.

+11
source

All Articles