Basically, growl notifications (or other callbacks) when tests break or pass. Does anything like this exist?
If not, it should be pretty easy to wri
You can use nodemon for the task, by watching .py files and execute manage.py test. The command will be: nodemon --ext py --exec "python manage.py test".
manage.py test
nodemon --ext py --exec "python manage.py test"
nodemon is an npm package however, I assume you have node installed.
nodemon