I run my tests using nosetests in verbose mode:
.... test_cache_region (tests.test_sysutil.TestCachedMethodDecorator) ... ok test_expire (tests.test_sysutil.TestCachedMethodDecorator) ... ok test_lru (tests.test_sysutil.TestCachedMethodDecorator) ... ok test_max_capacity (tests.test_sysutil.TestCachedMethodDecorator) ... ok test_DecimalJSONEncoder (tests.test_util.UtilTestCase) ... ok test_cdecimal_support (tests.test_util.UtilTestCase) ... ok test_ceil_with_ndigits (tests.test_util.UtilTestCase) ... ok test_switch_keyboard (tests.test_util.UtilTestCase) ... ok ...
Is there a way to change the report format in this way:
... tests.test_sysutil.TestCachedMethodDecorator.test_lru ... ok tests.test_sysutil.TestCachedMethodDecorator.test_max_capacity ... ok tests.test_util.UtilTestCase.test_DecimalJSONEncoder ... ok tests.test_util.UtilTestCase.test_cdecimal_support ... ok ...
source share