diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-12-26 22:11:04 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-12-27 19:23:03 +0100 |
commit | 983a3ea437d76b769b82726cc602d26e0e57894a (patch) | |
tree | ce7bb9a0896fcbf53fe02c60e3199500f9e4833e /lib/testtools/NEWS | |
parent | 24957527e0250a9a5d4c51ff47db9ff2eb11ee7b (diff) | |
download | samba-983a3ea437d76b769b82726cc602d26e0e57894a.tar.gz samba-983a3ea437d76b769b82726cc602d26e0e57894a.tar.bz2 samba-983a3ea437d76b769b82726cc602d26e0e57894a.zip |
testtools: Update to latest upstream version.
Diffstat (limited to 'lib/testtools/NEWS')
-rw-r--r-- | lib/testtools/NEWS | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/lib/testtools/NEWS b/lib/testtools/NEWS index 9b0ac8be0f..6f3cb8c946 100644 --- a/lib/testtools/NEWS +++ b/lib/testtools/NEWS @@ -6,6 +6,58 @@ Changes and improvements to testtools_, grouped by release. NEXT ~~~~ +0.9.24 +~~~~~~ + +Changes +------- + +* ``testtools.run discover`` will now sort the tests it discovered. This is a + workaround for http://bugs.python.org/issue16709. Non-standard test suites + are preserved, and their ``sort_tests()`` method called (if they have such an + attribute). ``testtools.testsuite.sorted_tests(suite, True)`` can be used by + such suites to do a local sort. (Robert Collins, #1091512) + +* ``ThreadsafeForwardingResult`` now defines a stub ``progress`` method, which + fixes ``testr run`` of streams containing progress markers (by discarding the + progress data). (Robert Collins, #1019165) + +0.9.23 +~~~~~~ + +Changes +------- + +* ``run.TestToolsTestRunner`` now accepts the verbosity, buffer and failfast + arguments the upstream python TestProgram code wants to give it, making it + possible to support them in a compatible fashion. (Robert Collins) + +Improvements +------------ + +* ``testtools.run`` now supports the ``-f`` or ``--failfast`` parameter. + Previously it was advertised in the help but ignored. + (Robert Collins, #1090582) + +* ``AnyMatch`` added, a new matcher that matches when any item in a collection + matches the given matcher. (Jonathan Lange) + +* Spelling corrections to documentation. (Vincent Ladeuil) + +* ``TestProgram`` now has a sane default for its ``testRunner`` argument. + (Vincent Ladeuil) + +* The test suite passes on Python 3 again. (Robert Collins) + +0.9.22 +~~~~~~ + +Improvements +------------ + +* ``content_from_file`` and ``content_from_stream`` now accept seek_offset and + seek_whence parameters allowing them to be used to grab less than the full + stream, or to be used with StringIO streams. (Robert Collins, #1088693) 0.9.21 ~~~~~~ |