When I run django tests via manage.py test , is there a way to output the result to a text file?
manage.py test
in linux, you can do this:
python manage.py test > stdout.txt 2> stderr.txt
to redirect output to files.