diff options
author | Jonas Haag <jonas@lophus.org> | 2017-11-25 15:23:52 (GMT) |
---|---|---|
committer | Antoine Pitrou <pitrou@free.fr> | 2017-11-25 15:23:52 (GMT) |
commit | 5b48dc638b7405fd9bde4d854bf477dfeaaddf44 (patch) | |
tree | 2e3b44b9193cc1a0e08a6e1d65dd324e76fb3ee6 /Misc | |
parent | 8d9bb11d8fcbf10cc9b1eb0a647bcf3658a4e3dd (diff) | |
download | cpython-5b48dc638b7405fd9bde4d854bf477dfeaaddf44.zip cpython-5b48dc638b7405fd9bde4d854bf477dfeaaddf44.tar.gz cpython-5b48dc638b7405fd9bde4d854bf477dfeaaddf44.tar.bz2 |
bpo-32071: Add unittest -k option (#4496)
* bpo-32071: Add unittest -k option
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-11-22-19-52-17.bpo-32071.4WNhUH.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-22-19-52-17.bpo-32071.4WNhUH.rst b/Misc/NEWS.d/next/Library/2017-11-22-19-52-17.bpo-32071.4WNhUH.rst new file mode 100644 index 0000000..2f0f540 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-11-22-19-52-17.bpo-32071.4WNhUH.rst @@ -0,0 +1,2 @@ +Added the ``-k`` command-line option to ``python -m unittest`` to run only +tests that match the given pattern(s). |