I want to run the unittests verbosely, so you can see which test is running (the function name, or if you have a one-line docstring, it displays that), instead of the usual "..E..F." output.
There are two ways, the first is to construct a test-suite using TestLoader, pass it to TestTextLoader(verbosity=2):
suite = unittest.TestSuite([
unittest.TestLoader().loadTestsFromTestCase(test_tvnamer.test_name_parser),
unittest.TestLoader().loadTestsFromTestCase(test_tvdb_api.test_tvdb)
])
# for one test, you can do:
# suite = unittest.TestLoader().loadTestsFromTestCase(test_name_parser)