Python unit testing: make nose show failed assertions values

Viewed 4556

is it possible to show the assertion values that failed? It shows the traceback and what kind of exception was throw but it would more practical to know which values failed.

Example:

assert result.file == file
AssertionError
3 Answers
Related