mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 17:07:07 +00:00
Finish annotating test_helpers.py.
This commit is contained in:
@@ -197,7 +197,7 @@ class POSTRequestMock(object):
|
|||||||
self.META = {'PATH_INFO': 'test'}
|
self.META = {'PATH_INFO': 'test'}
|
||||||
|
|
||||||
INSTRUMENTING = os.environ.get('TEST_INSTRUMENT_URL_COVERAGE', '') == 'TRUE'
|
INSTRUMENTING = os.environ.get('TEST_INSTRUMENT_URL_COVERAGE', '') == 'TRUE'
|
||||||
INSTRUMENTED_CALLS = []
|
INSTRUMENTED_CALLS = [] # type: List[Dict[str, Any]]
|
||||||
|
|
||||||
UrlFuncT = Callable[..., HttpResponse] # TODO: make more specific
|
UrlFuncT = Callable[..., HttpResponse] # TODO: make more specific
|
||||||
|
|
||||||
@@ -207,6 +207,7 @@ def instrument_url(f):
|
|||||||
return f
|
return f
|
||||||
else:
|
else:
|
||||||
def wrapper(self, url, info={}, **kwargs):
|
def wrapper(self, url, info={}, **kwargs):
|
||||||
|
# type: (Any, text_type, Dict[str, Any], **Any) -> HttpResponse
|
||||||
start = time.time()
|
start = time.time()
|
||||||
result = f(self, url, info, **kwargs)
|
result = f(self, url, info, **kwargs)
|
||||||
delay = time.time() - start
|
delay = time.time() - start
|
||||||
|
|||||||
Reference in New Issue
Block a user