diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-25 12:56:46 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-25 12:56:46 (GMT) |
commit | b05ac864f048bfeb184e93be71aebd6223a76eec (patch) | |
tree | 962db75f0fc559bb47ae45601295cd18bd8f7fdf /Lib/unittest/case.py | |
parent | c2ad0aa9f1bc89e6da38f81af9ca05e921fa725c (diff) | |
download | cpython-b05ac864f048bfeb184e93be71aebd6223a76eec.zip cpython-b05ac864f048bfeb184e93be71aebd6223a76eec.tar.gz cpython-b05ac864f048bfeb184e93be71aebd6223a76eec.tar.bz2 |
Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin).
Diffstat (limited to 'Lib/unittest/case.py')
-rw-r--r-- | Lib/unittest/case.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index 3133907..e627cca 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -62,7 +62,7 @@ def skip(reason): Unconditionally skip a test. """ def decorator(test_item): - if not (isinstance(test_item, type) and issubclass(test_item, TestCase)): + if not isinstance(test_item, type): @functools.wraps(test_item) def skip_wrapper(*args, **kwargs): raise SkipTest(reason) |