I have a pretty large test suite and I decorated some of the test_* functions. Now I can\'t call them by ./test.py MySqlTestCase.test_foo_double, python3.2 comp
./test.py MySqlTestCase.test_foo_double
This help me:
from functools import wraps
...
@wraps(procedure_name) def decorator(test):