Get test suite timing breakdown with `django-timed-tests`

If you’re having trouble with your test suite taking too long, and not knowing where to start optimizing, I created django-timed-tests which should help with this exact problem. It’s a small library containing a custom test runner that outputs duration breakdown of your test suite: 10 slowest tests by default, and a breakdown per module/case/method with the --full-report flag. I tried to keep it as lightweight as possible in order to make integration with already existing custom test runners as simple as possible.

Give it a spin and tell me what you think!