Nose status blacklist E-> X and add S

This commit is contained in:
Joseph Kahn 2016-04-08 10:24:33 -04:00
parent 06919ed0a4
commit 3276b5dbdb
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ class FilteringStream(object):
self.__excludes = list(map(re.compile, excludes))
def __should_filter(self, a):
if a not in [('.',), ('E',), ('F',)]:
if a not in [('.',), ('X',), ('F',), ('S',)]:
return False
try:
stack = traceback.extract_stack(limit=3)[0]