Skip to content

Commit c497602

Browse files
author
Circle Ci python-examination
committed
python-examination from CircleCI
75e4ec28d8c4077162b6d717b99e15c7a547654e (docs) release 1.5.1 [skip ci]
1 parent ce1a7f7 commit c497602

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.dbwebb/test/examiner/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
from examiner.helper_functions import check_for_tags as tags, find_path_to_assignment, import_module
77

88
# Version structure major.minor[.patch][sub]
9-
__version__ = '1.5.0'
9+
__version__ = '1.5.1'

.dbwebb/test/examiner/helper_functions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import re
55
import hashlib
66
import os
7+
from functools import wraps
78
from unittest import SkipTest
89
import importlib.util as importer
910
try:
@@ -168,6 +169,8 @@ def skip_function():
168169

169170
def decorator(f):
170171
"""Decorator for overwriting test_case functions"""
172+
173+
@wraps(f)
171174
def wrapper(self, *args, **kwargs):
172175
"""Wrapper"""
173176
user_tags = set(self.USER_TAGS)

0 commit comments

Comments
 (0)