1 2 3 4 5
def print_test_name(f): def fn(self): print f.__name__ f(self) return fn
Very very simple thing, but it's very nice to know which test is currently running and consuming CPU power.
Comments