Skeleton fix

This commit is contained in:
Ilya.Kazakevich
2016-03-02 22:20:06 +03:00
parent 3a84caac4f
commit 3d724c6af6
2 changed files with 7 additions and 1 deletions

View File

@@ -136,7 +136,7 @@ class JoinableQueue(multiprocessing.Queue):
pass
def active_childern():
def active_children():
"""
:rtype: list[multiprocessing.Process]
"""

View File

@@ -64,6 +64,12 @@ class collect:
# _pytest.mark
class mark:
def __getattr__(self, item):
"""
This class may have any attribute, so this method should exist
"""
pass
@staticmethod
def skipif(condition, reason=None):
"""skip the given test function if eval(condition) results in a True