From 0bbb24ff19753eca6f1e86dbf590b329d0b9c88c Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sun, 14 May 2017 08:50:32 +0200 Subject: Assign the wrapped function’s attributes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It mainly assigns to the wrapper push_results_to_db's __name__, __module__ and __doc__ and the documentation string. Change-Id: Idc882ac4e743699a4887e46c5066e0983c90afd9 Signed-off-by: Cédric Ollivier --- functest/utils/decorators.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functest/utils/decorators.py b/functest/utils/decorators.py index 46ffe35d1..bfbdf048d 100644 --- a/functest/utils/decorators.py +++ b/functest/utils/decorators.py @@ -3,6 +3,7 @@ # pylint: disable=missing-docstring import errno +import functools import os import urlparse @@ -41,6 +42,7 @@ def can_dump_request_to_file(method): else: return session.request(method=method, url=url, **kwargs) + @functools.wraps(method) def hook(*args, **kwargs): with mock.patch('requests.api.request', side_effect=patch_request): return method(*args, **kwargs) -- cgit 1.2.3-korg