Django's test runner is based on Python's built-in unittest:
https://docs.python.org/3/library/unittest.html#module-unittest . I believe
you can use the verbose mode (e.g. -v 2) to see the list of all executed
tests.
On Sun, 3 Feb 2019 at 21:56, Jeremy Potter
wrote:
> The Django test runner curr
The Django test runner currently only displays tests that failed, and not
those that succeeded. It would be nice if Django were to print out a list
of tests that succeeded. First of all, it is satisfying to see tests
succeed. Second of all, it would be easier to debug (if certain tests were
not