Revert "success should not include skipped"

This reverts commit 300ee227a2.
This commit is contained in:
Brian Coca 2015-11-19 11:10:09 -08:00
parent 9b9fb51d9d
commit f8ed99e5e4

View file

@ -36,7 +36,7 @@ def failed(*a, **kw):
def success(*a, **kw):
''' Test if task result yields success '''
return not failed(*a, **kw) and not skipped(*a, **kw)
return not failed(*a, **kw)
def changed(*a, **kw):
''' Test if task result yields changed '''