up vote 1 down vote favorite
share [g+] share [fb]

The Python unittest framework has a concept of verbosity that I can't seem to find defined anywhere. For instance, I'm running test cases like this (like in the documentation):

suite = unittest.TestLoader().loadTestsFromTestCase(MyAwesomeTest)
unittest.TextTestRunner(verbosity=2).run(suite)

The only number I've ever seen passed as verbosity is 2. What is this magic number, what does it mean, what what else can I pass?

link|improve this question

When you looked at the source, what did you find? – S.Lott Aug 24 '09 at 14:01
feedback

1 Answer

up vote 5 down vote accepted

You only have 3 different levels:

0: quiet -> you just get the total numbers of tests executed and the global result

1: default -> you get the same plus a dot for every successful test or a F for every failure

2: verbose -> you get the help string of every test and the result

You can use command line args rather than the verbosity argument: --quiet and --verbose would do a similar think than passing 0 or 2 to the runner.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.