diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-09-10 15:55:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-10 15:55:05 (GMT) |
commit | f0f29f328d8b4568e8c0d4c55c7d120d96f80911 (patch) | |
tree | a136806ec7f2fe5b0ca4d444f3d73d732b49e392 /Misc | |
parent | ab327f2929589407595a3de95727c8ab34ddd4af (diff) | |
download | cpython-f0f29f328d8b4568e8c0d4c55c7d120d96f80911.zip cpython-f0f29f328d8b4568e8c0d4c55c7d120d96f80911.tar.gz cpython-f0f29f328d8b4568e8c0d4c55c7d120d96f80911.tar.bz2 |
bpo-25894: Always report skipped and failed subtests separately (GH-28082)
* In default mode output separate characters for skipped and failed subtests.
* In verbose mode output separate lines (including description) for skipped
and failed subtests.
* In verbose mode output test description for errors in test cleanup.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-09-05-13-15-08.bpo-25894.zjbi2f.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-09-05-13-15-08.bpo-25894.zjbi2f.rst b/Misc/NEWS.d/next/Library/2021-09-05-13-15-08.bpo-25894.zjbi2f.rst new file mode 100644 index 0000000..b0a036f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-09-05-13-15-08.bpo-25894.zjbi2f.rst @@ -0,0 +1,4 @@ +:mod:`unittest` now always reports skipped and failed subtests separately: +separate characters in default mode and separate lines in verbose mode. Also +the test description is now output for errors in test method, class and +module cleanups. |