diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-01-03 18:03:36 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-01-03 18:03:36 (GMT) |
commit | 42fa110035032f252c7691b0129717b2eab32731 (patch) | |
tree | c6eb9ff37c45de3de8ccbd0d053326bc8134c9a1 /Doc/whatsnew | |
parent | a475a8d313805bb84affcba8da7c8e82319d0761 (diff) | |
download | cpython-42fa110035032f252c7691b0129717b2eab32731.zip cpython-42fa110035032f252c7691b0129717b2eab32731.tar.gz cpython-42fa110035032f252c7691b0129717b2eab32731.tar.bz2 |
whatsnew: unittest import time SkipTest reported as skip not error.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 6681eba..31208c1 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -1015,6 +1015,10 @@ Support for easy dynamically-generated subtests using the *defaultTest*, where previously it only accepted a single test name as a string. (Contributed by Jyrki Pulliainen in :issue:`15132`.) +If :class:`~unittest.SkipTest` is raised during test discovery (that is, at the +module level in the test file), it is now reported as a skip instead of an +error. (Contributed by Zach Ware in :issue:`16935`.) + venv ---- |