pkgsrc/devel/py-testtools/PLIST

228 lines
10 KiB
Text
Raw Normal View History

Updated py-testtools to 2.2.0. 2.2.0 ~~~~~ Improvements ------------ * Twisted support code uses ``inlineCallbacks`` rather than the deprecated ``deferredGenerator``. (Tristan Seligmann) 2.1.0 ~~~~~ Improvements ------------ * ``TestResult`` objects that don't implement ``stop``/``shouldStop`` are now handled sanely. (Jonathan Lange) * New ``Always`` and ``Never`` matchers. (Tristan Seligmann, #947026) * Fixed example in ``failed`` docstring. (Jonathan Lange, Github #208) * Rather than explicitly raising a ``KeyboardInterrupt`` if we get no result from a ``Deferred``, we tell the test result to stop running tests and report the lack of result as a test error. This ought to make weird concurrency interaction bugs easier to understand. (Jonathan Lange) * Introduce the unique_text_generator generator function. Similar to the getUniqueString() method, except it creates unique unicode text strings. (Brant Knudson) * Previously, when gathering details caused by a setUp() failure, a traceback occurred if the fixture used the newer _setUp(). This had the side effect of not clearing up fixtures nor gathering details properly. This is now fixed. (Julian Edwards, #1469759) * New ``Warnings`` matcher, and ``WarningMessage`` and ``IsDeprecated`` functions for matching emitted warnings. (Jonathan Jacobs, Github #223) 2.0.0 ~~~~~ Just a few tweaks to our Twisted support. Major version bump to indicate that Python 2.6 & 3.2 are no longer supported. Changes ------- * ``AsynchronousDeferredRunTest`` now has ``suppress_twisted_logging`` and ``store_twisted_logs`` parameters that can be used to override the default logging behaviour. (Jonathan Lange, #942785) * New fixture ``CaptureTwistedLogs`` that can be used with ``AsynchronousDeferredRunTest`` to attach a detail containing everything logged to Twisted during the test run. (Jonathan Lange, #1515362) * Python 2.6 and 3.2 are no longer supported. If you want to use either of these versions of Python, use testtools 1.9.0. (Jonathan Lange) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) 1.9.0 ~~~~~ Many new fixes in this branch, including lots of work around Twisted support. This is the first release that explicitly supports Python 3.5 and the last release that supports Python 2.6 or 3.2. Thanks to all who contributed! Improvements ------------ * Python 3.5 added to the list of supported platforms. (Jonathan Lange) * ``MatchesListwise`` has more informative error when lengths don't match. (Jonathan Lange) * The short form of errors for failed binary comparisions will now put the expected value on the _right_. This means that ``assertThat(2, Equals(3))`` will raise an error saying ``2 != 3``. (Jonathan Lange, #1525227) * Tests for ``assertRaisesRegexp``. (Julia Varlamova, Jonathan Lange) * Tests that customize ``skipException`` no longer get tracebacks for skipped tests. (Jonathan Lange, #1518101) * A failing ``expectThat`` now fails tests run with ``AsynchronousDeferredRunTest``. (Jonathan Lange, #1532452) * New ``testtools.twistedsupport`` package that collects all of our Twisted support code in one place, including that currently available under ``testtools.deferredruntest``. (Jonathan Lange) * New matchers for testing ``Deferred`` code: ``failed``, ``succeeded``, and ``has_no_result``. (Jonathan Lange, Tristan Seligmann, #1369134) * ``TestCase`` objects can now be run twice. All internal state is reset between runs. In particular, testtools tests can now be run with ``trial -u``. (Jonathan Lange, #1517879) * Fixed bug where if an asynchronous ``Deferred`` test times out but the ``Deferred`` then fires, the entire test run would abort with ``KeyboardInterrupt``, failing the currently running test. (Jonathan Lange, James Westby) Changes ------- * Add a new test dependency of testscenarios. (Robert Collins) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) * ``run_with_log_observers`` is deprecated. * ``addCleanup`` can now only be called within a test run. (Jonathan Lange) * ``TestCase.skip`` deprecated. Use ``skipTest`` instead. (Jonathan Lange, #988893) * Getting ``expected`` or ``observed`` attributes from binary comparison mismatches (e.g. ``Equals(2).match(3).expected``) is now deprecated. (Jonathan Lange) * Last release of testtools to support Python 3.2. (Jonathan Lange) * Last release of testtools to support Python 2.6. (Jonathan Lange) * Report on all duplicate test ids when sorting test suites that contain duplicate ids. (Thomas Bechtold, Jonathan Lange, #1390082) * Add ``readthedocs-requirements.txt`` so readthedocs.org can build the Twisted API documentation. (Jonathan Lange) 1.8.1 ~~~~~ Improvements ------------ * Documented more explicitly how to build and install testtools in the hacking documentation. (Thomi Richards) * ``deferredruntest`` now works with Twisted 15.1.0 and later. (Colin Watson, #1488710) 1.8.0 ~~~~~ Improvements ------------ * AsynchronousDeferredRunTest now correctly attaches the test log. Previously it attached an empty file. (Colin Watson) 1.7.1 ~~~~~ Improvements ------------ * Building a wheel on Python 3 was missing ``_compat2x.py`` needed for Python2. This was a side effect of the fix to bug #941958, where we fixed a cosmetic error. (Robert Collins, #1430534) * During reporting in ``TextTestResult`` now always uses ``ceil`` rather than depending on the undefined rounding behaviour in string formatting. (Robert Collins) 1.7.0 ~~~~~ Improvements ------------ * Empty attachments to tests were triggering a file payload of None in the ``ExtendedToStreamDecorator`` code, which caused multiple copies of attachments that had been output prior to the empty one. (Robert Collins, #1378609) 1.6.1 ~~~~~ Changes ------- * Fix installing when ``extras`` is not already installed. Our guards for the absence of unittest2 were not sufficient. (Robert Collins, #1430076) 1.6.0 ~~~~~ Improvements ------------ * ``testtools.run`` now accepts ``--locals`` to show local variables in tracebacks, which can be a significant aid in debugging. In doing so we've removed the code reimplementing linecache and traceback by using the new traceback2 and linecache2 packages. (Robert Collins, github #111) Changes ------- * ``testtools`` now depends on ``unittest2`` 1.0.0 which brings in a dependency on ``traceback2`` and via it ``linecache2``. (Robert Collins)
2017-02-22 15:20:56 +01:00
@comment $NetBSD: PLIST,v 1.8 2017/02/22 14:20:56 wiz Exp $
Update py-testtools to 0.9.34. 0.9.34 ~~~~~~ Improvements ------------ * Added ability for ``testtools.TestCase`` instances to force a test to fail, even if no assertions failed. (Thomi Richards) * Added ``testtools.content.StacktraceContent``, a content object that automatically creates a ``StackLinesContent`` object containing the current stack trace. (Thomi Richards) * ``AnyMatch`` is now exported properly in ``testtools.matchers``. (Robert Collins, Rob Kennedy, github #44) * In Python 3.3, if there are duplicate test ids, tests.sort() will fail and raise TypeError. Detect the duplicate test ids firstly in sorted_tests() to ensure that all test ids are unique. (Kui Shi, #1243922) * ``json_content`` is now in the ``__all__`` attribute for ``testtools.content``. (Robert Collins) * Network tests now bind to 127.0.0.1 to avoid (even temporary) network visible ports. (Benedikt Morbach, github #46) * Test listing now explicitly indicates by printing 'Failed to import' and exiting (2) when an import has failed rather than only signalling through the test name. (Robert Collins, #1245672) * ``test_compat.TestDetectEncoding.test_bom`` now works on Python 3.3 - the corner case with euc_jp is no longer permitted in Python 3.3 so we can skip it. (Martin [gz], #1251962) 0.9.33 ~~~~~~ Improvements ------------ * Added ``addDetailuniqueName`` method to ``testtools.TestCase`` class. (Thomi Richards) * Removed some unused code from ``testtools.content.TracebackContent``. (Thomi Richards) * Added ``testtools.StackLinesContent``: a content object for displaying pre-processed stack lines. (Thomi Richards) * ``StreamSummary`` was calculating testsRun incorrectly: ``exists`` status tests were counted as run tests, but they are not. (Robert Collins, #1203728) 0.9.32 ~~~~~~ Regular maintenance release. Special thanks to new contributor, Xiao Hanyu! Changes ------- * ``testttols.compat._format_exc_info`` has been refactored into several smaller functions. (Thomi Richards) Improvements ------------ * Stacktrace filtering no longer hides unittest frames that are surrounded by user frames. We will reenable this when we figure out a better algorithm for retaining meaning. (Robert Collins, #1188420) * The compatibility code for skipped tests with unittest2 was broken. (Robert Collins, #1190951) * Various documentation improvements (Clint Byrum, Xiao Hanyu). 0.9.31 ~~~~~~ Improvements ------------ * ``ExpectedException`` now accepts a msg parameter for describing an error, much the same as assertEquals etc. (Robert Collins) 0.9.30 ~~~~~~ A new sort of TestResult, the StreamResult has been added, as a prototype for a revised standard library test result API. Expect this API to change. Although we will try to preserve compatibility for early adopters, it is experimental and we might need to break it if it turns out to be unsuitable. Improvements ------------ * ``assertRaises`` works properly for exception classes that have custom metaclasses * ``ConcurrentTestSuite`` was silently eating exceptions that propagate from the test.run(result) method call. Ignoring them is fine in a normal test runner, but when they happen in a different thread, the thread that called suite.run() is not in the stack anymore, and the exceptions are lost. We now create a synthetic test recording any such exception. (Robert Collins, #1130429) * Fixed SyntaxError raised in ``_compat2x.py`` when installing via Python 3. (Will Bond, #941958) * New class ``StreamResult`` which defines the API for the new result type. (Robert Collins) * New support class ``ConcurrentStreamTestSuite`` for convenient construction and utilisation of ``StreamToQueue`` objects. (Robert Collins) * New support class ``CopyStreamResult`` which forwards events onto multiple ``StreamResult`` objects (each of which receives all the events). (Robert Collins) * New support class ``StreamSummary`` which summarises a ``StreamResult`` stream compatibly with ``TestResult`` code. (Robert Collins) * New support class ``StreamTagger`` which adds or removes tags from ``StreamResult`` events. (RobertCollins) * New support class ``StreamToDict`` which converts a ``StreamResult`` to a series of dicts describing a test. Useful for writing trivial stream analysers. (Robert Collins) * New support class ``TestControl`` which permits cancelling an in-progress run. (Robert Collins) * New support class ``StreamFailFast`` which calls a ``TestControl`` instance to abort the test run when a failure is detected. (Robert Collins) * New support class ``ExtendedToStreamDecorator`` which translates both regular unittest TestResult API calls and the ExtendedTestResult API which testtools has supported into the StreamResult API. ExtendedToStreamDecorator also forwards calls made in the StreamResult API, permitting it to be used anywhere a StreamResult is used. Key TestResult query methods like wasSuccessful and shouldStop are synchronised with the StreamResult API calls, but the detailed statistics like the list of errors are not - a separate consumer will be created to support that. (Robert Collins) * New support class ``StreamToExtendedDecorator`` which translates ``StreamResult`` API calls into ``ExtendedTestResult`` (or any older ``TestResult``) calls. This permits using un-migrated result objects with new runners / tests. (Robert Collins) * New support class ``StreamToQueue`` for sending messages to one ``StreamResult`` from multiple threads. (Robert Collins) * New support class ``TimestampingStreamResult`` which adds a timestamp to events with no timestamp. (Robert Collins) * New ``TestCase`` decorator ``DecorateTestCaseResult`` that adapts the ``TestResult`` or ``StreamResult`` a case will be run with, for ensuring that a particular result object is used even if the runner running the test doesn't know to use it. (Robert Collins) * New test support class ``testtools.testresult.doubles.StreamResult``, which captures all the StreamResult events. (Robert Collins) * ``PlaceHolder`` can now hold tags, and applies them before, and removes them after, the test. (Robert Collins) * ``PlaceHolder`` can now hold timestamps, and applies them before the test and then before the outcome. (Robert Collins) * ``StreamResultRouter`` added. This is useful for demultiplexing - e.g. for partitioning analysis of events or sending feedback encapsulated in StreamResult events back to their source. (Robert Collins) * ``testtools.run.TestProgram`` now supports the ``TestRunner`` taking over responsibility for formatting the output of ``--list-tests``. (Robert Collins) * The error message for setUp and tearDown upcall errors was broken on Python 3.4. (Monty Taylor, Robert Collins, #1140688) * The repr of object() on pypy includes the object id, which was breaking a test that accidentally depended on the CPython repr for object(). (Jonathan Lange) 0.9.29 ~~~~~~ A simple bug fix, and better error messages when you don't up-call. Changes ------- * ``testtools.content_type.ContentType`` incorrectly used ',' rather than ';' to separate parameters. (Robert Collins) Improvements ------------ * ``testtools.compat.unicode_output_stream`` was wrapping a stream encoder around ``io.StringIO`` and ``io.TextIOWrapper`` objects, which was incorrect. (Robert Collins) * Report the name of the source file for setUp and tearDown upcall errors. (Monty Taylor) 0.9.28 ~~~~~~ Testtools has moved VCS - https://github.com/testing-cabal/testtools/ is the new home. Bug tracking is still on Launchpad, and releases are on Pypi. We made this change to take advantage of the richer ecosystem of tools around Git, and to lower the barrier for new contributors. Improvements ------------ * New ``testtools.testcase.attr`` and ``testtools.testcase.WithAttributes`` helpers allow marking up test case methods with simple labels. This permits filtering tests with more granularity than organising them into modules and test classes. (Robert Collins) 0.9.27 ~~~~~~ Improvements ------------ * New matcher ``HasLength`` for matching the length of a collection. (Robert Collins) * New matcher ``MatchesPredicateWithParams`` make it still easier to create ad hoc matchers. (Robert Collins) * We have a simpler release process in future - see doc/hacking.rst. (Robert Collins) 0.9.26 ~~~~~~ Brown paper bag fix: failed to document the need for setup to be able to use extras. Compounded by pip not supporting setup_requires. Changes ------- * setup.py now can generate egg_info even if extras is not available. Also lists extras in setup_requires for easy_install. (Robert Collins, #1102464) 0.9.25 ~~~~~~ Changes ------- * ``python -m testtools.run --load-list`` will now preserve any custom suites (such as ``testtools.FixtureSuite`` or ``testresources.OptimisingTestSuite``) rather than flattening them. (Robert Collins, #827175) * Testtools now depends on extras, a small library split out from it to contain generally useful non-testing facilities. Since extras has been around for a couple of testtools releases now, we're making this into a hard dependency of testtools. (Robert Collins) * Testtools now uses setuptools rather than distutils so that we can document the extras dependency. (Robert Collins) Improvements ------------ * Testtools will no longer override test code registered details called 'traceback' when reporting caught exceptions from test code. (Robert Collins, #812793)
2014-01-24 14:22:22 +01:00
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
Updated py-testtools to 2.2.0. 2.2.0 ~~~~~ Improvements ------------ * Twisted support code uses ``inlineCallbacks`` rather than the deprecated ``deferredGenerator``. (Tristan Seligmann) 2.1.0 ~~~~~ Improvements ------------ * ``TestResult`` objects that don't implement ``stop``/``shouldStop`` are now handled sanely. (Jonathan Lange) * New ``Always`` and ``Never`` matchers. (Tristan Seligmann, #947026) * Fixed example in ``failed`` docstring. (Jonathan Lange, Github #208) * Rather than explicitly raising a ``KeyboardInterrupt`` if we get no result from a ``Deferred``, we tell the test result to stop running tests and report the lack of result as a test error. This ought to make weird concurrency interaction bugs easier to understand. (Jonathan Lange) * Introduce the unique_text_generator generator function. Similar to the getUniqueString() method, except it creates unique unicode text strings. (Brant Knudson) * Previously, when gathering details caused by a setUp() failure, a traceback occurred if the fixture used the newer _setUp(). This had the side effect of not clearing up fixtures nor gathering details properly. This is now fixed. (Julian Edwards, #1469759) * New ``Warnings`` matcher, and ``WarningMessage`` and ``IsDeprecated`` functions for matching emitted warnings. (Jonathan Jacobs, Github #223) 2.0.0 ~~~~~ Just a few tweaks to our Twisted support. Major version bump to indicate that Python 2.6 & 3.2 are no longer supported. Changes ------- * ``AsynchronousDeferredRunTest`` now has ``suppress_twisted_logging`` and ``store_twisted_logs`` parameters that can be used to override the default logging behaviour. (Jonathan Lange, #942785) * New fixture ``CaptureTwistedLogs`` that can be used with ``AsynchronousDeferredRunTest`` to attach a detail containing everything logged to Twisted during the test run. (Jonathan Lange, #1515362) * Python 2.6 and 3.2 are no longer supported. If you want to use either of these versions of Python, use testtools 1.9.0. (Jonathan Lange) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) 1.9.0 ~~~~~ Many new fixes in this branch, including lots of work around Twisted support. This is the first release that explicitly supports Python 3.5 and the last release that supports Python 2.6 or 3.2. Thanks to all who contributed! Improvements ------------ * Python 3.5 added to the list of supported platforms. (Jonathan Lange) * ``MatchesListwise`` has more informative error when lengths don't match. (Jonathan Lange) * The short form of errors for failed binary comparisions will now put the expected value on the _right_. This means that ``assertThat(2, Equals(3))`` will raise an error saying ``2 != 3``. (Jonathan Lange, #1525227) * Tests for ``assertRaisesRegexp``. (Julia Varlamova, Jonathan Lange) * Tests that customize ``skipException`` no longer get tracebacks for skipped tests. (Jonathan Lange, #1518101) * A failing ``expectThat`` now fails tests run with ``AsynchronousDeferredRunTest``. (Jonathan Lange, #1532452) * New ``testtools.twistedsupport`` package that collects all of our Twisted support code in one place, including that currently available under ``testtools.deferredruntest``. (Jonathan Lange) * New matchers for testing ``Deferred`` code: ``failed``, ``succeeded``, and ``has_no_result``. (Jonathan Lange, Tristan Seligmann, #1369134) * ``TestCase`` objects can now be run twice. All internal state is reset between runs. In particular, testtools tests can now be run with ``trial -u``. (Jonathan Lange, #1517879) * Fixed bug where if an asynchronous ``Deferred`` test times out but the ``Deferred`` then fires, the entire test run would abort with ``KeyboardInterrupt``, failing the currently running test. (Jonathan Lange, James Westby) Changes ------- * Add a new test dependency of testscenarios. (Robert Collins) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) * ``run_with_log_observers`` is deprecated. * ``addCleanup`` can now only be called within a test run. (Jonathan Lange) * ``TestCase.skip`` deprecated. Use ``skipTest`` instead. (Jonathan Lange, #988893) * Getting ``expected`` or ``observed`` attributes from binary comparison mismatches (e.g. ``Equals(2).match(3).expected``) is now deprecated. (Jonathan Lange) * Last release of testtools to support Python 3.2. (Jonathan Lange) * Last release of testtools to support Python 2.6. (Jonathan Lange) * Report on all duplicate test ids when sorting test suites that contain duplicate ids. (Thomas Bechtold, Jonathan Lange, #1390082) * Add ``readthedocs-requirements.txt`` so readthedocs.org can build the Twisted API documentation. (Jonathan Lange) 1.8.1 ~~~~~ Improvements ------------ * Documented more explicitly how to build and install testtools in the hacking documentation. (Thomi Richards) * ``deferredruntest`` now works with Twisted 15.1.0 and later. (Colin Watson, #1488710) 1.8.0 ~~~~~ Improvements ------------ * AsynchronousDeferredRunTest now correctly attaches the test log. Previously it attached an empty file. (Colin Watson) 1.7.1 ~~~~~ Improvements ------------ * Building a wheel on Python 3 was missing ``_compat2x.py`` needed for Python2. This was a side effect of the fix to bug #941958, where we fixed a cosmetic error. (Robert Collins, #1430534) * During reporting in ``TextTestResult`` now always uses ``ceil`` rather than depending on the undefined rounding behaviour in string formatting. (Robert Collins) 1.7.0 ~~~~~ Improvements ------------ * Empty attachments to tests were triggering a file payload of None in the ``ExtendedToStreamDecorator`` code, which caused multiple copies of attachments that had been output prior to the empty one. (Robert Collins, #1378609) 1.6.1 ~~~~~ Changes ------- * Fix installing when ``extras`` is not already installed. Our guards for the absence of unittest2 were not sufficient. (Robert Collins, #1430076) 1.6.0 ~~~~~ Improvements ------------ * ``testtools.run`` now accepts ``--locals`` to show local variables in tracebacks, which can be a significant aid in debugging. In doing so we've removed the code reimplementing linecache and traceback by using the new traceback2 and linecache2 packages. (Robert Collins, github #111) Changes ------- * ``testtools`` now depends on ``unittest2`` 1.0.0 which brings in a dependency on ``traceback2`` and via it ``linecache2``. (Robert Collins)
2017-02-22 15:20:56 +01:00
${PYSITELIB}/${EGG_INFODIR}/pbr.json
Update py-testtools to 0.9.34. 0.9.34 ~~~~~~ Improvements ------------ * Added ability for ``testtools.TestCase`` instances to force a test to fail, even if no assertions failed. (Thomi Richards) * Added ``testtools.content.StacktraceContent``, a content object that automatically creates a ``StackLinesContent`` object containing the current stack trace. (Thomi Richards) * ``AnyMatch`` is now exported properly in ``testtools.matchers``. (Robert Collins, Rob Kennedy, github #44) * In Python 3.3, if there are duplicate test ids, tests.sort() will fail and raise TypeError. Detect the duplicate test ids firstly in sorted_tests() to ensure that all test ids are unique. (Kui Shi, #1243922) * ``json_content`` is now in the ``__all__`` attribute for ``testtools.content``. (Robert Collins) * Network tests now bind to 127.0.0.1 to avoid (even temporary) network visible ports. (Benedikt Morbach, github #46) * Test listing now explicitly indicates by printing 'Failed to import' and exiting (2) when an import has failed rather than only signalling through the test name. (Robert Collins, #1245672) * ``test_compat.TestDetectEncoding.test_bom`` now works on Python 3.3 - the corner case with euc_jp is no longer permitted in Python 3.3 so we can skip it. (Martin [gz], #1251962) 0.9.33 ~~~~~~ Improvements ------------ * Added ``addDetailuniqueName`` method to ``testtools.TestCase`` class. (Thomi Richards) * Removed some unused code from ``testtools.content.TracebackContent``. (Thomi Richards) * Added ``testtools.StackLinesContent``: a content object for displaying pre-processed stack lines. (Thomi Richards) * ``StreamSummary`` was calculating testsRun incorrectly: ``exists`` status tests were counted as run tests, but they are not. (Robert Collins, #1203728) 0.9.32 ~~~~~~ Regular maintenance release. Special thanks to new contributor, Xiao Hanyu! Changes ------- * ``testttols.compat._format_exc_info`` has been refactored into several smaller functions. (Thomi Richards) Improvements ------------ * Stacktrace filtering no longer hides unittest frames that are surrounded by user frames. We will reenable this when we figure out a better algorithm for retaining meaning. (Robert Collins, #1188420) * The compatibility code for skipped tests with unittest2 was broken. (Robert Collins, #1190951) * Various documentation improvements (Clint Byrum, Xiao Hanyu). 0.9.31 ~~~~~~ Improvements ------------ * ``ExpectedException`` now accepts a msg parameter for describing an error, much the same as assertEquals etc. (Robert Collins) 0.9.30 ~~~~~~ A new sort of TestResult, the StreamResult has been added, as a prototype for a revised standard library test result API. Expect this API to change. Although we will try to preserve compatibility for early adopters, it is experimental and we might need to break it if it turns out to be unsuitable. Improvements ------------ * ``assertRaises`` works properly for exception classes that have custom metaclasses * ``ConcurrentTestSuite`` was silently eating exceptions that propagate from the test.run(result) method call. Ignoring them is fine in a normal test runner, but when they happen in a different thread, the thread that called suite.run() is not in the stack anymore, and the exceptions are lost. We now create a synthetic test recording any such exception. (Robert Collins, #1130429) * Fixed SyntaxError raised in ``_compat2x.py`` when installing via Python 3. (Will Bond, #941958) * New class ``StreamResult`` which defines the API for the new result type. (Robert Collins) * New support class ``ConcurrentStreamTestSuite`` for convenient construction and utilisation of ``StreamToQueue`` objects. (Robert Collins) * New support class ``CopyStreamResult`` which forwards events onto multiple ``StreamResult`` objects (each of which receives all the events). (Robert Collins) * New support class ``StreamSummary`` which summarises a ``StreamResult`` stream compatibly with ``TestResult`` code. (Robert Collins) * New support class ``StreamTagger`` which adds or removes tags from ``StreamResult`` events. (RobertCollins) * New support class ``StreamToDict`` which converts a ``StreamResult`` to a series of dicts describing a test. Useful for writing trivial stream analysers. (Robert Collins) * New support class ``TestControl`` which permits cancelling an in-progress run. (Robert Collins) * New support class ``StreamFailFast`` which calls a ``TestControl`` instance to abort the test run when a failure is detected. (Robert Collins) * New support class ``ExtendedToStreamDecorator`` which translates both regular unittest TestResult API calls and the ExtendedTestResult API which testtools has supported into the StreamResult API. ExtendedToStreamDecorator also forwards calls made in the StreamResult API, permitting it to be used anywhere a StreamResult is used. Key TestResult query methods like wasSuccessful and shouldStop are synchronised with the StreamResult API calls, but the detailed statistics like the list of errors are not - a separate consumer will be created to support that. (Robert Collins) * New support class ``StreamToExtendedDecorator`` which translates ``StreamResult`` API calls into ``ExtendedTestResult`` (or any older ``TestResult``) calls. This permits using un-migrated result objects with new runners / tests. (Robert Collins) * New support class ``StreamToQueue`` for sending messages to one ``StreamResult`` from multiple threads. (Robert Collins) * New support class ``TimestampingStreamResult`` which adds a timestamp to events with no timestamp. (Robert Collins) * New ``TestCase`` decorator ``DecorateTestCaseResult`` that adapts the ``TestResult`` or ``StreamResult`` a case will be run with, for ensuring that a particular result object is used even if the runner running the test doesn't know to use it. (Robert Collins) * New test support class ``testtools.testresult.doubles.StreamResult``, which captures all the StreamResult events. (Robert Collins) * ``PlaceHolder`` can now hold tags, and applies them before, and removes them after, the test. (Robert Collins) * ``PlaceHolder`` can now hold timestamps, and applies them before the test and then before the outcome. (Robert Collins) * ``StreamResultRouter`` added. This is useful for demultiplexing - e.g. for partitioning analysis of events or sending feedback encapsulated in StreamResult events back to their source. (Robert Collins) * ``testtools.run.TestProgram`` now supports the ``TestRunner`` taking over responsibility for formatting the output of ``--list-tests``. (Robert Collins) * The error message for setUp and tearDown upcall errors was broken on Python 3.4. (Monty Taylor, Robert Collins, #1140688) * The repr of object() on pypy includes the object id, which was breaking a test that accidentally depended on the CPython repr for object(). (Jonathan Lange) 0.9.29 ~~~~~~ A simple bug fix, and better error messages when you don't up-call. Changes ------- * ``testtools.content_type.ContentType`` incorrectly used ',' rather than ';' to separate parameters. (Robert Collins) Improvements ------------ * ``testtools.compat.unicode_output_stream`` was wrapping a stream encoder around ``io.StringIO`` and ``io.TextIOWrapper`` objects, which was incorrect. (Robert Collins) * Report the name of the source file for setUp and tearDown upcall errors. (Monty Taylor) 0.9.28 ~~~~~~ Testtools has moved VCS - https://github.com/testing-cabal/testtools/ is the new home. Bug tracking is still on Launchpad, and releases are on Pypi. We made this change to take advantage of the richer ecosystem of tools around Git, and to lower the barrier for new contributors. Improvements ------------ * New ``testtools.testcase.attr`` and ``testtools.testcase.WithAttributes`` helpers allow marking up test case methods with simple labels. This permits filtering tests with more granularity than organising them into modules and test classes. (Robert Collins) 0.9.27 ~~~~~~ Improvements ------------ * New matcher ``HasLength`` for matching the length of a collection. (Robert Collins) * New matcher ``MatchesPredicateWithParams`` make it still easier to create ad hoc matchers. (Robert Collins) * We have a simpler release process in future - see doc/hacking.rst. (Robert Collins) 0.9.26 ~~~~~~ Brown paper bag fix: failed to document the need for setup to be able to use extras. Compounded by pip not supporting setup_requires. Changes ------- * setup.py now can generate egg_info even if extras is not available. Also lists extras in setup_requires for easy_install. (Robert Collins, #1102464) 0.9.25 ~~~~~~ Changes ------- * ``python -m testtools.run --load-list`` will now preserve any custom suites (such as ``testtools.FixtureSuite`` or ``testresources.OptimisingTestSuite``) rather than flattening them. (Robert Collins, #827175) * Testtools now depends on extras, a small library split out from it to contain generally useful non-testing facilities. Since extras has been around for a couple of testtools releases now, we're making this into a hard dependency of testtools. (Robert Collins) * Testtools now uses setuptools rather than distutils so that we can document the extras dependency. (Robert Collins) Improvements ------------ * Testtools will no longer override test code registered details called 'traceback' when reporting caught exceptions from test code. (Robert Collins, #812793)
2014-01-24 14:22:22 +01:00
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/testtools/__init__.py
${PYSITELIB}/testtools/__init__.pyc
${PYSITELIB}/testtools/__init__.pyo
Updated py-testtools to 2.2.0. 2.2.0 ~~~~~ Improvements ------------ * Twisted support code uses ``inlineCallbacks`` rather than the deprecated ``deferredGenerator``. (Tristan Seligmann) 2.1.0 ~~~~~ Improvements ------------ * ``TestResult`` objects that don't implement ``stop``/``shouldStop`` are now handled sanely. (Jonathan Lange) * New ``Always`` and ``Never`` matchers. (Tristan Seligmann, #947026) * Fixed example in ``failed`` docstring. (Jonathan Lange, Github #208) * Rather than explicitly raising a ``KeyboardInterrupt`` if we get no result from a ``Deferred``, we tell the test result to stop running tests and report the lack of result as a test error. This ought to make weird concurrency interaction bugs easier to understand. (Jonathan Lange) * Introduce the unique_text_generator generator function. Similar to the getUniqueString() method, except it creates unique unicode text strings. (Brant Knudson) * Previously, when gathering details caused by a setUp() failure, a traceback occurred if the fixture used the newer _setUp(). This had the side effect of not clearing up fixtures nor gathering details properly. This is now fixed. (Julian Edwards, #1469759) * New ``Warnings`` matcher, and ``WarningMessage`` and ``IsDeprecated`` functions for matching emitted warnings. (Jonathan Jacobs, Github #223) 2.0.0 ~~~~~ Just a few tweaks to our Twisted support. Major version bump to indicate that Python 2.6 & 3.2 are no longer supported. Changes ------- * ``AsynchronousDeferredRunTest`` now has ``suppress_twisted_logging`` and ``store_twisted_logs`` parameters that can be used to override the default logging behaviour. (Jonathan Lange, #942785) * New fixture ``CaptureTwistedLogs`` that can be used with ``AsynchronousDeferredRunTest`` to attach a detail containing everything logged to Twisted during the test run. (Jonathan Lange, #1515362) * Python 2.6 and 3.2 are no longer supported. If you want to use either of these versions of Python, use testtools 1.9.0. (Jonathan Lange) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) 1.9.0 ~~~~~ Many new fixes in this branch, including lots of work around Twisted support. This is the first release that explicitly supports Python 3.5 and the last release that supports Python 2.6 or 3.2. Thanks to all who contributed! Improvements ------------ * Python 3.5 added to the list of supported platforms. (Jonathan Lange) * ``MatchesListwise`` has more informative error when lengths don't match. (Jonathan Lange) * The short form of errors for failed binary comparisions will now put the expected value on the _right_. This means that ``assertThat(2, Equals(3))`` will raise an error saying ``2 != 3``. (Jonathan Lange, #1525227) * Tests for ``assertRaisesRegexp``. (Julia Varlamova, Jonathan Lange) * Tests that customize ``skipException`` no longer get tracebacks for skipped tests. (Jonathan Lange, #1518101) * A failing ``expectThat`` now fails tests run with ``AsynchronousDeferredRunTest``. (Jonathan Lange, #1532452) * New ``testtools.twistedsupport`` package that collects all of our Twisted support code in one place, including that currently available under ``testtools.deferredruntest``. (Jonathan Lange) * New matchers for testing ``Deferred`` code: ``failed``, ``succeeded``, and ``has_no_result``. (Jonathan Lange, Tristan Seligmann, #1369134) * ``TestCase`` objects can now be run twice. All internal state is reset between runs. In particular, testtools tests can now be run with ``trial -u``. (Jonathan Lange, #1517879) * Fixed bug where if an asynchronous ``Deferred`` test times out but the ``Deferred`` then fires, the entire test run would abort with ``KeyboardInterrupt``, failing the currently running test. (Jonathan Lange, James Westby) Changes ------- * Add a new test dependency of testscenarios. (Robert Collins) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) * ``run_with_log_observers`` is deprecated. * ``addCleanup`` can now only be called within a test run. (Jonathan Lange) * ``TestCase.skip`` deprecated. Use ``skipTest`` instead. (Jonathan Lange, #988893) * Getting ``expected`` or ``observed`` attributes from binary comparison mismatches (e.g. ``Equals(2).match(3).expected``) is now deprecated. (Jonathan Lange) * Last release of testtools to support Python 3.2. (Jonathan Lange) * Last release of testtools to support Python 2.6. (Jonathan Lange) * Report on all duplicate test ids when sorting test suites that contain duplicate ids. (Thomas Bechtold, Jonathan Lange, #1390082) * Add ``readthedocs-requirements.txt`` so readthedocs.org can build the Twisted API documentation. (Jonathan Lange) 1.8.1 ~~~~~ Improvements ------------ * Documented more explicitly how to build and install testtools in the hacking documentation. (Thomi Richards) * ``deferredruntest`` now works with Twisted 15.1.0 and later. (Colin Watson, #1488710) 1.8.0 ~~~~~ Improvements ------------ * AsynchronousDeferredRunTest now correctly attaches the test log. Previously it attached an empty file. (Colin Watson) 1.7.1 ~~~~~ Improvements ------------ * Building a wheel on Python 3 was missing ``_compat2x.py`` needed for Python2. This was a side effect of the fix to bug #941958, where we fixed a cosmetic error. (Robert Collins, #1430534) * During reporting in ``TextTestResult`` now always uses ``ceil`` rather than depending on the undefined rounding behaviour in string formatting. (Robert Collins) 1.7.0 ~~~~~ Improvements ------------ * Empty attachments to tests were triggering a file payload of None in the ``ExtendedToStreamDecorator`` code, which caused multiple copies of attachments that had been output prior to the empty one. (Robert Collins, #1378609) 1.6.1 ~~~~~ Changes ------- * Fix installing when ``extras`` is not already installed. Our guards for the absence of unittest2 were not sufficient. (Robert Collins, #1430076) 1.6.0 ~~~~~ Improvements ------------ * ``testtools.run`` now accepts ``--locals`` to show local variables in tracebacks, which can be a significant aid in debugging. In doing so we've removed the code reimplementing linecache and traceback by using the new traceback2 and linecache2 packages. (Robert Collins, github #111) Changes ------- * ``testtools`` now depends on ``unittest2`` 1.0.0 which brings in a dependency on ``traceback2`` and via it ``linecache2``. (Robert Collins)
2017-02-22 15:20:56 +01:00
${PYSITELIB}/testtools/_compat2x.py
Update py-testtools to 0.9.24. 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 ~~~~~~ Improvements ------------ * ``DirContains`` correctly exposed, after being accidentally hidden in the great matcher re-organization of 0.9.17. (Jonathan Lange) 0.9.20 ~~~~~~ Three new matchers that'll rock your world. Improvements ------------ * New, powerful matchers that match items in a dictionary: - ``MatchesDict``, match every key in a dictionary with a key in a dictionary of matchers. For when the set of expected keys is equal to the set of observed keys. - ``ContainsDict``, every key in a dictionary of matchers must be found in a dictionary, and the values for those keys must match. For when the set of expected keys is a subset of the set of observed keys. - ``ContainedByDict``, every key in a dictionary must be found in a dictionary of matchers. For when the set of expected keys is a superset of the set of observed keys. The names are a little confusing, sorry. We're still trying to figure out how to present the concept in the simplest way possible. 0.9.19 ~~~~~~ How embarrassing! Three releases in two days. We've worked out the kinks and have confirmation from our downstreams that this is all good. Should be the last release for a little while. Please ignore 0.9.18 and 0.9.17. Improvements ------------ * Include the matcher tests in the release, allowing the tests to run and pass from the release tarball. (Jonathan Lange) * Fix cosmetic test failures in Python 3.3, introduced during release 0.9.17. (Jonathan Lange) 0.9.18 ~~~~~~ Due to an oversight, release 0.9.18 did not contain the new ``testtools.matchers`` package and was thus completely broken. This release corrects that, returning us all to normality. 0.9.17 ~~~~~~ This release brings better discover support and Python3.x improvements. There are still some test failures on Python3.3 but they are cosmetic - the library is as usable there as on any other Python 3 release. Changes ------- * The ``testtools.matchers`` package has been split up. No change to the public interface. (Jonathan Lange) Improvements ------------ * ``python -m testtools.run discover . --list`` now works. (Robert Collins) * Correctly handling of bytes vs text in JSON content type. (Martin [gz]) 0.9.16 ~~~~~~ Some new matchers and a new content helper for JSON content. This is the first release of testtools to drop support for Python 2.4 and 2.5. If you need support for either of those versions, please use testtools 0.9.15. Improvements ------------ * New content helper, ``json_content`` (Jonathan Lange) * New matchers: * ``ContainsAll`` for asserting one thing is a subset of another (Raphaël Badin) * ``SameMembers`` for asserting two iterators have the same members. (Jonathan Lange) * Reraising of exceptions in Python 3 is more reliable. (Martin [gz])
2013-01-19 12:03:17 +01:00
${PLIST.py2x}${PYSITELIB}/testtools/_compat2x.pyc
${PLIST.py2x}${PYSITELIB}/testtools/_compat2x.pyo
Update py-testtools to 0.9.12. 0.9.12 ~~~~~~ This is a very big release. We've made huge improvements on three fronts: 1. Test failures are way nicer and easier to read 2. Matchers and ``assertThat`` are much more convenient to use 3. Correct handling of extended unicode characters We've trimmed off the fat from the stack trace you get when tests fail, we've cut out the bits of error messages that just didn't help, we've made it easier to annotate mismatch failures, to compare complex objects and to match raised exceptions. Testing code was never this fun. Changes ------- * ``AfterPreproccessing`` renamed to ``AfterPreprocessing``, which is a more correct spelling. Old name preserved for backwards compatibility, but is now deprecated. Please stop using it. (Jonathan Lange, #813460) * ``assertThat`` raises ``MismatchError`` instead of ``TestCase.failureException``. ``MismatchError`` is a subclass of ``AssertionError``, so in most cases this change will not matter. However, if ``self.failureException`` has been set to a non-default value, then mismatches will become test errors rather than test failures. * ``gather_details`` takes two dicts, rather than two detailed objects. (Jonathan Lange, #801027) * ``MatchesRegex`` mismatch now says "<value> does not match /<regex>/" rather than "<regex> did not match <value>". The regular expression contains fewer backslashes too. (Jonathan Lange, #818079) * Tests that run with ``AsynchronousDeferredRunTest`` now have the ``reactor`` attribute set to the running reactor. (Jonathan Lange, #720749) Improvements ------------ * All public matchers are now in ``testtools.matchers.__all__``. (Jonathan Lange, #784859) * ``assertThat`` can actually display mismatches and matchers that contain extended unicode characters. (Jonathan Lange, Martin [gz], #804127) * ``assertThat`` output is much less verbose, displaying only what the mismatch tells us to display. Old-style verbose output can be had by passing ``verbose=True`` to assertThat. (Jonathan Lange, #675323, #593190) * ``assertThat`` accepts a message which will be used to annotate the matcher. This can be given as a third parameter or as a keyword parameter. (Robert Collins) * Automated the Launchpad part of the release process. (Jonathan Lange, #623486) * Correctly display non-ASCII unicode output on terminals that claim to have a unicode encoding. (Martin [gz], #804122) * ``DocTestMatches`` correctly handles unicode output from examples, rather than raising an error. (Martin [gz], #764170) * ``ErrorHolder`` and ``PlaceHolder`` added to docs. (Jonathan Lange, #816597) * ``ExpectedException`` now matches any exception of the given type by default, and also allows specifying a ``Matcher`` rather than a mere regular expression. (Jonathan Lange, #791889) * ``FixtureSuite`` added, allows test suites to run with a given fixture. (Jonathan Lange) * Hide testtools's own stack frames when displaying tracebacks, making it easier for test authors to focus on their errors. (Jonathan Lange, Martin [gz], #788974) * Less boilerplate displayed in test failures and errors. (Jonathan Lange, #660852) * ``MatchesException`` now allows you to match exceptions against any matcher, rather than just regular expressions. (Jonathan Lange, #791889) * ``MatchesException`` now permits a tuple of types rather than a single type (when using the type matching mode). (Robert Collins) * ``MatchesStructure.byEquality`` added to make the common case of matching many attributes by equality much easier. ``MatchesStructure.byMatcher`` added in case folk want to match by things other than equality. (Jonathan Lange) * New convenience assertions, ``assertIsNone`` and ``assertIsNotNone``. (Christian Kampka) * New matchers: * ``AllMatch`` matches many values against a single matcher. (Jonathan Lange, #615108) * ``Contains``. (Robert Collins) * ``GreaterThan``. (Christian Kampka) * New helper, ``safe_hasattr`` added. (Jonathan Lange) * ``reraise`` added to ``testtools.compat``. (Jonathan Lange)
2011-10-07 12:45:06 +02:00
${PYSITELIB}/testtools/_compat3x.py
${PYSITELIB}/testtools/_compat3x.pyc
${PYSITELIB}/testtools/_compat3x.pyo
Update py-testtools to 1.0.0. testtools NEWS ++++++++++++++ Changes and improvements to testtools_, grouped by release. 1.0.0 ~~~~~ Long overdue, we've adopted a backwards compatibility statement and recognized that we have plenty of users depending on our behaviour - calling our version 1.0.0 is a recognition of that. Improvements ------------ * Fix a long-standing bug where tearDown and cleanUps would not be called if the test run was interrupted. This should fix leaking external resources from interrupted tests. (Robert Collins, #1364188) * Fix a long-standing bug where calling sys.exit(0) from within a test would cause the test suite to exit with 0, without reporting a failure of that test. We still allow the test suite to be exited (since catching higher order exceptions requires exceptional circumstances) but we now call a last-resort handler on the TestCase, resulting in an error being reported for the test. (Robert Collins, #1364188) * Fix an issue where tests skipped with the ``skip``* family of decorators would still have their ``setUp`` and ``tearDown`` functions called. (Thomi Richards, #https://github.com/testing-cabal/testtools/issues/86) * We have adopted a formal backwards compatibility statement (see hacking.rst) (Robert Collins) 0.9.39 ~~~~~~ Brown paper bag release - 0.9.38 was broken for some users, _jython_aware_splitext was not defined entirely compatibly. (Robert Collins, #https://github.com/testing-cabal/testtools/issues/100) 0.9.38 ~~~~~~ Bug fixes for test importing. Improvements ------------ * Discovery import error detection wasn't implemented for python 2.6 (the 'discover' module). (Robert Collins) * Discovery now executes load_tests (if present) in __init__ in all packages. (Robert Collins, http://bugs.python.org/issue16662) 0.9.37 ~~~~~~ Minor improvements to correctness. Changes ------- * ``stdout`` is now correctly honoured on ``run.TestProgram`` - before the runner objects would be created with no stdout parameter. If construction fails, the previous parameter list is attempted, permitting compatibility with Runner classes that don't accept stdout as a parameter. (Robert Collins) * The ``ExtendedToStreamDecorator`` now handles content objects with one less packet - the last packet of the source content is sent with EOF set rather than an empty packet with EOF set being sent after the last packet of the source content. (Robert Collins) 0.9.36 ~~~~~~ Welcome to our long overdue 0.9.36 release, which improves compatibility with Python3.4, adds assert_that, a function for using matchers without TestCase objects, and finally will error if you try to use setUp or tearDown twice - since that invariably leads to bad things of one sort or another happening. Changes ------- * Error if ``setUp`` or ``tearDown`` are called twice. (Robert Collins, #882884) * Make testtools compatible with the ``unittest.expectedFailure`` decorator in Python 3.4. (Thomi Richards) Improvements ------------ * Introduce the assert_that function, which allows matchers to be used independent of testtools.TestCase. (Daniel Watkins, #1243834)
2014-09-10 11:01:49 +02:00
${PYSITELIB}/testtools/assertions.py
${PYSITELIB}/testtools/assertions.pyc
${PYSITELIB}/testtools/assertions.pyo
${PYSITELIB}/testtools/compat.py
${PYSITELIB}/testtools/compat.pyc
${PYSITELIB}/testtools/compat.pyo
${PYSITELIB}/testtools/content.py
${PYSITELIB}/testtools/content.pyc
${PYSITELIB}/testtools/content.pyo
${PYSITELIB}/testtools/content_type.py
${PYSITELIB}/testtools/content_type.pyc
${PYSITELIB}/testtools/content_type.pyo
${PYSITELIB}/testtools/deferredruntest.py
${PYSITELIB}/testtools/deferredruntest.pyc
${PYSITELIB}/testtools/deferredruntest.pyo
${PYSITELIB}/testtools/distutilscmd.py
${PYSITELIB}/testtools/distutilscmd.pyc
${PYSITELIB}/testtools/distutilscmd.pyo
${PYSITELIB}/testtools/helpers.py
${PYSITELIB}/testtools/helpers.pyc
${PYSITELIB}/testtools/helpers.pyo
Update py-testtools to 0.9.24. 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 ~~~~~~ Improvements ------------ * ``DirContains`` correctly exposed, after being accidentally hidden in the great matcher re-organization of 0.9.17. (Jonathan Lange) 0.9.20 ~~~~~~ Three new matchers that'll rock your world. Improvements ------------ * New, powerful matchers that match items in a dictionary: - ``MatchesDict``, match every key in a dictionary with a key in a dictionary of matchers. For when the set of expected keys is equal to the set of observed keys. - ``ContainsDict``, every key in a dictionary of matchers must be found in a dictionary, and the values for those keys must match. For when the set of expected keys is a subset of the set of observed keys. - ``ContainedByDict``, every key in a dictionary must be found in a dictionary of matchers. For when the set of expected keys is a superset of the set of observed keys. The names are a little confusing, sorry. We're still trying to figure out how to present the concept in the simplest way possible. 0.9.19 ~~~~~~ How embarrassing! Three releases in two days. We've worked out the kinks and have confirmation from our downstreams that this is all good. Should be the last release for a little while. Please ignore 0.9.18 and 0.9.17. Improvements ------------ * Include the matcher tests in the release, allowing the tests to run and pass from the release tarball. (Jonathan Lange) * Fix cosmetic test failures in Python 3.3, introduced during release 0.9.17. (Jonathan Lange) 0.9.18 ~~~~~~ Due to an oversight, release 0.9.18 did not contain the new ``testtools.matchers`` package and was thus completely broken. This release corrects that, returning us all to normality. 0.9.17 ~~~~~~ This release brings better discover support and Python3.x improvements. There are still some test failures on Python3.3 but they are cosmetic - the library is as usable there as on any other Python 3 release. Changes ------- * The ``testtools.matchers`` package has been split up. No change to the public interface. (Jonathan Lange) Improvements ------------ * ``python -m testtools.run discover . --list`` now works. (Robert Collins) * Correctly handling of bytes vs text in JSON content type. (Martin [gz]) 0.9.16 ~~~~~~ Some new matchers and a new content helper for JSON content. This is the first release of testtools to drop support for Python 2.4 and 2.5. If you need support for either of those versions, please use testtools 0.9.15. Improvements ------------ * New content helper, ``json_content`` (Jonathan Lange) * New matchers: * ``ContainsAll`` for asserting one thing is a subset of another (Raphaël Badin) * ``SameMembers`` for asserting two iterators have the same members. (Jonathan Lange) * Reraising of exceptions in Python 3 is more reliable. (Martin [gz])
2013-01-19 12:03:17 +01:00
${PYSITELIB}/testtools/matchers/__init__.py
${PYSITELIB}/testtools/matchers/__init__.pyc
${PYSITELIB}/testtools/matchers/__init__.pyo
${PYSITELIB}/testtools/matchers/_basic.py
${PYSITELIB}/testtools/matchers/_basic.pyc
${PYSITELIB}/testtools/matchers/_basic.pyo
Updated py-testtools to 2.2.0. 2.2.0 ~~~~~ Improvements ------------ * Twisted support code uses ``inlineCallbacks`` rather than the deprecated ``deferredGenerator``. (Tristan Seligmann) 2.1.0 ~~~~~ Improvements ------------ * ``TestResult`` objects that don't implement ``stop``/``shouldStop`` are now handled sanely. (Jonathan Lange) * New ``Always`` and ``Never`` matchers. (Tristan Seligmann, #947026) * Fixed example in ``failed`` docstring. (Jonathan Lange, Github #208) * Rather than explicitly raising a ``KeyboardInterrupt`` if we get no result from a ``Deferred``, we tell the test result to stop running tests and report the lack of result as a test error. This ought to make weird concurrency interaction bugs easier to understand. (Jonathan Lange) * Introduce the unique_text_generator generator function. Similar to the getUniqueString() method, except it creates unique unicode text strings. (Brant Knudson) * Previously, when gathering details caused by a setUp() failure, a traceback occurred if the fixture used the newer _setUp(). This had the side effect of not clearing up fixtures nor gathering details properly. This is now fixed. (Julian Edwards, #1469759) * New ``Warnings`` matcher, and ``WarningMessage`` and ``IsDeprecated`` functions for matching emitted warnings. (Jonathan Jacobs, Github #223) 2.0.0 ~~~~~ Just a few tweaks to our Twisted support. Major version bump to indicate that Python 2.6 & 3.2 are no longer supported. Changes ------- * ``AsynchronousDeferredRunTest`` now has ``suppress_twisted_logging`` and ``store_twisted_logs`` parameters that can be used to override the default logging behaviour. (Jonathan Lange, #942785) * New fixture ``CaptureTwistedLogs`` that can be used with ``AsynchronousDeferredRunTest`` to attach a detail containing everything logged to Twisted during the test run. (Jonathan Lange, #1515362) * Python 2.6 and 3.2 are no longer supported. If you want to use either of these versions of Python, use testtools 1.9.0. (Jonathan Lange) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) 1.9.0 ~~~~~ Many new fixes in this branch, including lots of work around Twisted support. This is the first release that explicitly supports Python 3.5 and the last release that supports Python 2.6 or 3.2. Thanks to all who contributed! Improvements ------------ * Python 3.5 added to the list of supported platforms. (Jonathan Lange) * ``MatchesListwise`` has more informative error when lengths don't match. (Jonathan Lange) * The short form of errors for failed binary comparisions will now put the expected value on the _right_. This means that ``assertThat(2, Equals(3))`` will raise an error saying ``2 != 3``. (Jonathan Lange, #1525227) * Tests for ``assertRaisesRegexp``. (Julia Varlamova, Jonathan Lange) * Tests that customize ``skipException`` no longer get tracebacks for skipped tests. (Jonathan Lange, #1518101) * A failing ``expectThat`` now fails tests run with ``AsynchronousDeferredRunTest``. (Jonathan Lange, #1532452) * New ``testtools.twistedsupport`` package that collects all of our Twisted support code in one place, including that currently available under ``testtools.deferredruntest``. (Jonathan Lange) * New matchers for testing ``Deferred`` code: ``failed``, ``succeeded``, and ``has_no_result``. (Jonathan Lange, Tristan Seligmann, #1369134) * ``TestCase`` objects can now be run twice. All internal state is reset between runs. In particular, testtools tests can now be run with ``trial -u``. (Jonathan Lange, #1517879) * Fixed bug where if an asynchronous ``Deferred`` test times out but the ``Deferred`` then fires, the entire test run would abort with ``KeyboardInterrupt``, failing the currently running test. (Jonathan Lange, James Westby) Changes ------- * Add a new test dependency of testscenarios. (Robert Collins) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) * ``run_with_log_observers`` is deprecated. * ``addCleanup`` can now only be called within a test run. (Jonathan Lange) * ``TestCase.skip`` deprecated. Use ``skipTest`` instead. (Jonathan Lange, #988893) * Getting ``expected`` or ``observed`` attributes from binary comparison mismatches (e.g. ``Equals(2).match(3).expected``) is now deprecated. (Jonathan Lange) * Last release of testtools to support Python 3.2. (Jonathan Lange) * Last release of testtools to support Python 2.6. (Jonathan Lange) * Report on all duplicate test ids when sorting test suites that contain duplicate ids. (Thomas Bechtold, Jonathan Lange, #1390082) * Add ``readthedocs-requirements.txt`` so readthedocs.org can build the Twisted API documentation. (Jonathan Lange) 1.8.1 ~~~~~ Improvements ------------ * Documented more explicitly how to build and install testtools in the hacking documentation. (Thomi Richards) * ``deferredruntest`` now works with Twisted 15.1.0 and later. (Colin Watson, #1488710) 1.8.0 ~~~~~ Improvements ------------ * AsynchronousDeferredRunTest now correctly attaches the test log. Previously it attached an empty file. (Colin Watson) 1.7.1 ~~~~~ Improvements ------------ * Building a wheel on Python 3 was missing ``_compat2x.py`` needed for Python2. This was a side effect of the fix to bug #941958, where we fixed a cosmetic error. (Robert Collins, #1430534) * During reporting in ``TextTestResult`` now always uses ``ceil`` rather than depending on the undefined rounding behaviour in string formatting. (Robert Collins) 1.7.0 ~~~~~ Improvements ------------ * Empty attachments to tests were triggering a file payload of None in the ``ExtendedToStreamDecorator`` code, which caused multiple copies of attachments that had been output prior to the empty one. (Robert Collins, #1378609) 1.6.1 ~~~~~ Changes ------- * Fix installing when ``extras`` is not already installed. Our guards for the absence of unittest2 were not sufficient. (Robert Collins, #1430076) 1.6.0 ~~~~~ Improvements ------------ * ``testtools.run`` now accepts ``--locals`` to show local variables in tracebacks, which can be a significant aid in debugging. In doing so we've removed the code reimplementing linecache and traceback by using the new traceback2 and linecache2 packages. (Robert Collins, github #111) Changes ------- * ``testtools`` now depends on ``unittest2`` 1.0.0 which brings in a dependency on ``traceback2`` and via it ``linecache2``. (Robert Collins)
2017-02-22 15:20:56 +01:00
${PYSITELIB}/testtools/matchers/_const.py
${PYSITELIB}/testtools/matchers/_const.pyc
${PYSITELIB}/testtools/matchers/_const.pyo
Update py-testtools to 0.9.24. 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 ~~~~~~ Improvements ------------ * ``DirContains`` correctly exposed, after being accidentally hidden in the great matcher re-organization of 0.9.17. (Jonathan Lange) 0.9.20 ~~~~~~ Three new matchers that'll rock your world. Improvements ------------ * New, powerful matchers that match items in a dictionary: - ``MatchesDict``, match every key in a dictionary with a key in a dictionary of matchers. For when the set of expected keys is equal to the set of observed keys. - ``ContainsDict``, every key in a dictionary of matchers must be found in a dictionary, and the values for those keys must match. For when the set of expected keys is a subset of the set of observed keys. - ``ContainedByDict``, every key in a dictionary must be found in a dictionary of matchers. For when the set of expected keys is a superset of the set of observed keys. The names are a little confusing, sorry. We're still trying to figure out how to present the concept in the simplest way possible. 0.9.19 ~~~~~~ How embarrassing! Three releases in two days. We've worked out the kinks and have confirmation from our downstreams that this is all good. Should be the last release for a little while. Please ignore 0.9.18 and 0.9.17. Improvements ------------ * Include the matcher tests in the release, allowing the tests to run and pass from the release tarball. (Jonathan Lange) * Fix cosmetic test failures in Python 3.3, introduced during release 0.9.17. (Jonathan Lange) 0.9.18 ~~~~~~ Due to an oversight, release 0.9.18 did not contain the new ``testtools.matchers`` package and was thus completely broken. This release corrects that, returning us all to normality. 0.9.17 ~~~~~~ This release brings better discover support and Python3.x improvements. There are still some test failures on Python3.3 but they are cosmetic - the library is as usable there as on any other Python 3 release. Changes ------- * The ``testtools.matchers`` package has been split up. No change to the public interface. (Jonathan Lange) Improvements ------------ * ``python -m testtools.run discover . --list`` now works. (Robert Collins) * Correctly handling of bytes vs text in JSON content type. (Martin [gz]) 0.9.16 ~~~~~~ Some new matchers and a new content helper for JSON content. This is the first release of testtools to drop support for Python 2.4 and 2.5. If you need support for either of those versions, please use testtools 0.9.15. Improvements ------------ * New content helper, ``json_content`` (Jonathan Lange) * New matchers: * ``ContainsAll`` for asserting one thing is a subset of another (Raphaël Badin) * ``SameMembers`` for asserting two iterators have the same members. (Jonathan Lange) * Reraising of exceptions in Python 3 is more reliable. (Martin [gz])
2013-01-19 12:03:17 +01:00
${PYSITELIB}/testtools/matchers/_datastructures.py
${PYSITELIB}/testtools/matchers/_datastructures.pyc
${PYSITELIB}/testtools/matchers/_datastructures.pyo
${PYSITELIB}/testtools/matchers/_dict.py
${PYSITELIB}/testtools/matchers/_dict.pyc
${PYSITELIB}/testtools/matchers/_dict.pyo
${PYSITELIB}/testtools/matchers/_doctest.py
${PYSITELIB}/testtools/matchers/_doctest.pyc
${PYSITELIB}/testtools/matchers/_doctest.pyo
${PYSITELIB}/testtools/matchers/_exception.py
${PYSITELIB}/testtools/matchers/_exception.pyc
${PYSITELIB}/testtools/matchers/_exception.pyo
${PYSITELIB}/testtools/matchers/_filesystem.py
${PYSITELIB}/testtools/matchers/_filesystem.pyc
${PYSITELIB}/testtools/matchers/_filesystem.pyo
${PYSITELIB}/testtools/matchers/_higherorder.py
${PYSITELIB}/testtools/matchers/_higherorder.pyc
${PYSITELIB}/testtools/matchers/_higherorder.pyo
${PYSITELIB}/testtools/matchers/_impl.py
${PYSITELIB}/testtools/matchers/_impl.pyc
${PYSITELIB}/testtools/matchers/_impl.pyo
Updated py-testtools to 2.2.0. 2.2.0 ~~~~~ Improvements ------------ * Twisted support code uses ``inlineCallbacks`` rather than the deprecated ``deferredGenerator``. (Tristan Seligmann) 2.1.0 ~~~~~ Improvements ------------ * ``TestResult`` objects that don't implement ``stop``/``shouldStop`` are now handled sanely. (Jonathan Lange) * New ``Always`` and ``Never`` matchers. (Tristan Seligmann, #947026) * Fixed example in ``failed`` docstring. (Jonathan Lange, Github #208) * Rather than explicitly raising a ``KeyboardInterrupt`` if we get no result from a ``Deferred``, we tell the test result to stop running tests and report the lack of result as a test error. This ought to make weird concurrency interaction bugs easier to understand. (Jonathan Lange) * Introduce the unique_text_generator generator function. Similar to the getUniqueString() method, except it creates unique unicode text strings. (Brant Knudson) * Previously, when gathering details caused by a setUp() failure, a traceback occurred if the fixture used the newer _setUp(). This had the side effect of not clearing up fixtures nor gathering details properly. This is now fixed. (Julian Edwards, #1469759) * New ``Warnings`` matcher, and ``WarningMessage`` and ``IsDeprecated`` functions for matching emitted warnings. (Jonathan Jacobs, Github #223) 2.0.0 ~~~~~ Just a few tweaks to our Twisted support. Major version bump to indicate that Python 2.6 & 3.2 are no longer supported. Changes ------- * ``AsynchronousDeferredRunTest`` now has ``suppress_twisted_logging`` and ``store_twisted_logs`` parameters that can be used to override the default logging behaviour. (Jonathan Lange, #942785) * New fixture ``CaptureTwistedLogs`` that can be used with ``AsynchronousDeferredRunTest`` to attach a detail containing everything logged to Twisted during the test run. (Jonathan Lange, #1515362) * Python 2.6 and 3.2 are no longer supported. If you want to use either of these versions of Python, use testtools 1.9.0. (Jonathan Lange) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) 1.9.0 ~~~~~ Many new fixes in this branch, including lots of work around Twisted support. This is the first release that explicitly supports Python 3.5 and the last release that supports Python 2.6 or 3.2. Thanks to all who contributed! Improvements ------------ * Python 3.5 added to the list of supported platforms. (Jonathan Lange) * ``MatchesListwise`` has more informative error when lengths don't match. (Jonathan Lange) * The short form of errors for failed binary comparisions will now put the expected value on the _right_. This means that ``assertThat(2, Equals(3))`` will raise an error saying ``2 != 3``. (Jonathan Lange, #1525227) * Tests for ``assertRaisesRegexp``. (Julia Varlamova, Jonathan Lange) * Tests that customize ``skipException`` no longer get tracebacks for skipped tests. (Jonathan Lange, #1518101) * A failing ``expectThat`` now fails tests run with ``AsynchronousDeferredRunTest``. (Jonathan Lange, #1532452) * New ``testtools.twistedsupport`` package that collects all of our Twisted support code in one place, including that currently available under ``testtools.deferredruntest``. (Jonathan Lange) * New matchers for testing ``Deferred`` code: ``failed``, ``succeeded``, and ``has_no_result``. (Jonathan Lange, Tristan Seligmann, #1369134) * ``TestCase`` objects can now be run twice. All internal state is reset between runs. In particular, testtools tests can now be run with ``trial -u``. (Jonathan Lange, #1517879) * Fixed bug where if an asynchronous ``Deferred`` test times out but the ``Deferred`` then fires, the entire test run would abort with ``KeyboardInterrupt``, failing the currently running test. (Jonathan Lange, James Westby) Changes ------- * Add a new test dependency of testscenarios. (Robert Collins) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) * ``run_with_log_observers`` is deprecated. * ``addCleanup`` can now only be called within a test run. (Jonathan Lange) * ``TestCase.skip`` deprecated. Use ``skipTest`` instead. (Jonathan Lange, #988893) * Getting ``expected`` or ``observed`` attributes from binary comparison mismatches (e.g. ``Equals(2).match(3).expected``) is now deprecated. (Jonathan Lange) * Last release of testtools to support Python 3.2. (Jonathan Lange) * Last release of testtools to support Python 2.6. (Jonathan Lange) * Report on all duplicate test ids when sorting test suites that contain duplicate ids. (Thomas Bechtold, Jonathan Lange, #1390082) * Add ``readthedocs-requirements.txt`` so readthedocs.org can build the Twisted API documentation. (Jonathan Lange) 1.8.1 ~~~~~ Improvements ------------ * Documented more explicitly how to build and install testtools in the hacking documentation. (Thomi Richards) * ``deferredruntest`` now works with Twisted 15.1.0 and later. (Colin Watson, #1488710) 1.8.0 ~~~~~ Improvements ------------ * AsynchronousDeferredRunTest now correctly attaches the test log. Previously it attached an empty file. (Colin Watson) 1.7.1 ~~~~~ Improvements ------------ * Building a wheel on Python 3 was missing ``_compat2x.py`` needed for Python2. This was a side effect of the fix to bug #941958, where we fixed a cosmetic error. (Robert Collins, #1430534) * During reporting in ``TextTestResult`` now always uses ``ceil`` rather than depending on the undefined rounding behaviour in string formatting. (Robert Collins) 1.7.0 ~~~~~ Improvements ------------ * Empty attachments to tests were triggering a file payload of None in the ``ExtendedToStreamDecorator`` code, which caused multiple copies of attachments that had been output prior to the empty one. (Robert Collins, #1378609) 1.6.1 ~~~~~ Changes ------- * Fix installing when ``extras`` is not already installed. Our guards for the absence of unittest2 were not sufficient. (Robert Collins, #1430076) 1.6.0 ~~~~~ Improvements ------------ * ``testtools.run`` now accepts ``--locals`` to show local variables in tracebacks, which can be a significant aid in debugging. In doing so we've removed the code reimplementing linecache and traceback by using the new traceback2 and linecache2 packages. (Robert Collins, github #111) Changes ------- * ``testtools`` now depends on ``unittest2`` 1.0.0 which brings in a dependency on ``traceback2`` and via it ``linecache2``. (Robert Collins)
2017-02-22 15:20:56 +01:00
${PYSITELIB}/testtools/matchers/_warnings.py
${PYSITELIB}/testtools/matchers/_warnings.pyc
${PYSITELIB}/testtools/matchers/_warnings.pyo
${PYSITELIB}/testtools/monkey.py
${PYSITELIB}/testtools/monkey.pyc
${PYSITELIB}/testtools/monkey.pyo
${PYSITELIB}/testtools/run.py
${PYSITELIB}/testtools/run.pyc
${PYSITELIB}/testtools/run.pyo
${PYSITELIB}/testtools/runtest.py
${PYSITELIB}/testtools/runtest.pyc
${PYSITELIB}/testtools/runtest.pyo
Update py-testtools to 0.9.15. 0.9.15 ~~~~~~ This is the last release to support Python2.4 and 2.5. It brings in a slew of improvements to test tagging and concurrency, making running large test suites with partitioned workers more reliable and easier to reproduce exact test ordering in a given worker. See our sister project ``testrepository`` for a test runner that uses these features. Changes ------- * ``PlaceHolder`` and ``ErrorHolder`` now support being given result details. (Robert Collins) * ``ErrorHolder`` is now just a function - all the logic is in ``PlaceHolder``. (Robert Collins) * ``TestResult`` and all other ``TestResult``-like objects in testtools distinguish between global tags and test-local tags, as per the subunit specification. (Jonathan Lange) * This is the **last** release of testtools that supports Python 2.4 or 2.5. These releases are no longer supported by the Python community and do not receive security updates. If this affects you, you will need to either stay on this release or perform your own backports. (Jonathan Lange, Robert Collins) * ``ThreadsafeForwardingResult`` now forwards global tags as test-local tags, making reasoning about the correctness of the multiplexed stream simpler. This preserves the semantic value (what tags apply to a given test) while consuming less stream size (as no negative-tag statement is needed). (Robert Collins, Gary Poster, #986434) Improvements ------------ * API documentation corrections. (Raphaël Badin) * ``ConcurrentTestSuite`` now takes an optional ``wrap_result`` parameter that can be used to wrap the ``ThreadsafeForwardingResult``s created by the suite. (Jonathan Lange) * ``Tagger`` added. It's a new ``TestResult`` that tags all tests sent to it with a particular set of tags. (Jonathan Lange) * ``testresultdecorator`` brought over from subunit. (Jonathan Lange) * All ``TestResult`` wrappers now correctly forward ``current_tags`` from their wrapped results, meaning that ``current_tags`` can always be relied upon to return the currently active tags on a test result. * ``TestByTestResult``, a ``TestResult`` that calls a method once per test, added. (Jonathan Lange) * ``ThreadsafeForwardingResult`` correctly forwards ``tags()`` calls where only one of ``new_tags`` or ``gone_tags`` are specified. (Jonathan Lange, #980263) * ``ThreadsafeForwardingResult`` no longer leaks local tags from one test into all future tests run. (Jonathan Lange, #985613) * ``ThreadsafeForwardingResult`` has many, many more tests. (Jonathan Lange)
2012-09-16 14:37:51 +02:00
${PYSITELIB}/testtools/tags.py
${PYSITELIB}/testtools/tags.pyc
${PYSITELIB}/testtools/tags.pyo
${PYSITELIB}/testtools/testcase.py
${PYSITELIB}/testtools/testcase.pyc
${PYSITELIB}/testtools/testcase.pyo
${PYSITELIB}/testtools/testresult/__init__.py
${PYSITELIB}/testtools/testresult/__init__.pyc
${PYSITELIB}/testtools/testresult/__init__.pyo
${PYSITELIB}/testtools/testresult/doubles.py
${PYSITELIB}/testtools/testresult/doubles.pyc
${PYSITELIB}/testtools/testresult/doubles.pyo
${PYSITELIB}/testtools/testresult/real.py
${PYSITELIB}/testtools/testresult/real.pyc
${PYSITELIB}/testtools/testresult/real.pyo
${PYSITELIB}/testtools/tests/__init__.py
${PYSITELIB}/testtools/tests/__init__.pyc
${PYSITELIB}/testtools/tests/__init__.pyo
${PYSITELIB}/testtools/tests/helpers.py
${PYSITELIB}/testtools/tests/helpers.pyc
${PYSITELIB}/testtools/tests/helpers.pyo
Update py-testtools to 0.9.24. 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 ~~~~~~ Improvements ------------ * ``DirContains`` correctly exposed, after being accidentally hidden in the great matcher re-organization of 0.9.17. (Jonathan Lange) 0.9.20 ~~~~~~ Three new matchers that'll rock your world. Improvements ------------ * New, powerful matchers that match items in a dictionary: - ``MatchesDict``, match every key in a dictionary with a key in a dictionary of matchers. For when the set of expected keys is equal to the set of observed keys. - ``ContainsDict``, every key in a dictionary of matchers must be found in a dictionary, and the values for those keys must match. For when the set of expected keys is a subset of the set of observed keys. - ``ContainedByDict``, every key in a dictionary must be found in a dictionary of matchers. For when the set of expected keys is a superset of the set of observed keys. The names are a little confusing, sorry. We're still trying to figure out how to present the concept in the simplest way possible. 0.9.19 ~~~~~~ How embarrassing! Three releases in two days. We've worked out the kinks and have confirmation from our downstreams that this is all good. Should be the last release for a little while. Please ignore 0.9.18 and 0.9.17. Improvements ------------ * Include the matcher tests in the release, allowing the tests to run and pass from the release tarball. (Jonathan Lange) * Fix cosmetic test failures in Python 3.3, introduced during release 0.9.17. (Jonathan Lange) 0.9.18 ~~~~~~ Due to an oversight, release 0.9.18 did not contain the new ``testtools.matchers`` package and was thus completely broken. This release corrects that, returning us all to normality. 0.9.17 ~~~~~~ This release brings better discover support and Python3.x improvements. There are still some test failures on Python3.3 but they are cosmetic - the library is as usable there as on any other Python 3 release. Changes ------- * The ``testtools.matchers`` package has been split up. No change to the public interface. (Jonathan Lange) Improvements ------------ * ``python -m testtools.run discover . --list`` now works. (Robert Collins) * Correctly handling of bytes vs text in JSON content type. (Martin [gz]) 0.9.16 ~~~~~~ Some new matchers and a new content helper for JSON content. This is the first release of testtools to drop support for Python 2.4 and 2.5. If you need support for either of those versions, please use testtools 0.9.15. Improvements ------------ * New content helper, ``json_content`` (Jonathan Lange) * New matchers: * ``ContainsAll`` for asserting one thing is a subset of another (Raphaël Badin) * ``SameMembers`` for asserting two iterators have the same members. (Jonathan Lange) * Reraising of exceptions in Python 3 is more reliable. (Martin [gz])
2013-01-19 12:03:17 +01:00
${PYSITELIB}/testtools/tests/matchers/__init__.py
${PYSITELIB}/testtools/tests/matchers/__init__.pyc
${PYSITELIB}/testtools/tests/matchers/__init__.pyo
${PYSITELIB}/testtools/tests/matchers/helpers.py
${PYSITELIB}/testtools/tests/matchers/helpers.pyc
${PYSITELIB}/testtools/tests/matchers/helpers.pyo
${PYSITELIB}/testtools/tests/matchers/test_basic.py
${PYSITELIB}/testtools/tests/matchers/test_basic.pyc
${PYSITELIB}/testtools/tests/matchers/test_basic.pyo
Updated py-testtools to 2.2.0. 2.2.0 ~~~~~ Improvements ------------ * Twisted support code uses ``inlineCallbacks`` rather than the deprecated ``deferredGenerator``. (Tristan Seligmann) 2.1.0 ~~~~~ Improvements ------------ * ``TestResult`` objects that don't implement ``stop``/``shouldStop`` are now handled sanely. (Jonathan Lange) * New ``Always`` and ``Never`` matchers. (Tristan Seligmann, #947026) * Fixed example in ``failed`` docstring. (Jonathan Lange, Github #208) * Rather than explicitly raising a ``KeyboardInterrupt`` if we get no result from a ``Deferred``, we tell the test result to stop running tests and report the lack of result as a test error. This ought to make weird concurrency interaction bugs easier to understand. (Jonathan Lange) * Introduce the unique_text_generator generator function. Similar to the getUniqueString() method, except it creates unique unicode text strings. (Brant Knudson) * Previously, when gathering details caused by a setUp() failure, a traceback occurred if the fixture used the newer _setUp(). This had the side effect of not clearing up fixtures nor gathering details properly. This is now fixed. (Julian Edwards, #1469759) * New ``Warnings`` matcher, and ``WarningMessage`` and ``IsDeprecated`` functions for matching emitted warnings. (Jonathan Jacobs, Github #223) 2.0.0 ~~~~~ Just a few tweaks to our Twisted support. Major version bump to indicate that Python 2.6 & 3.2 are no longer supported. Changes ------- * ``AsynchronousDeferredRunTest`` now has ``suppress_twisted_logging`` and ``store_twisted_logs`` parameters that can be used to override the default logging behaviour. (Jonathan Lange, #942785) * New fixture ``CaptureTwistedLogs`` that can be used with ``AsynchronousDeferredRunTest`` to attach a detail containing everything logged to Twisted during the test run. (Jonathan Lange, #1515362) * Python 2.6 and 3.2 are no longer supported. If you want to use either of these versions of Python, use testtools 1.9.0. (Jonathan Lange) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) 1.9.0 ~~~~~ Many new fixes in this branch, including lots of work around Twisted support. This is the first release that explicitly supports Python 3.5 and the last release that supports Python 2.6 or 3.2. Thanks to all who contributed! Improvements ------------ * Python 3.5 added to the list of supported platforms. (Jonathan Lange) * ``MatchesListwise`` has more informative error when lengths don't match. (Jonathan Lange) * The short form of errors for failed binary comparisions will now put the expected value on the _right_. This means that ``assertThat(2, Equals(3))`` will raise an error saying ``2 != 3``. (Jonathan Lange, #1525227) * Tests for ``assertRaisesRegexp``. (Julia Varlamova, Jonathan Lange) * Tests that customize ``skipException`` no longer get tracebacks for skipped tests. (Jonathan Lange, #1518101) * A failing ``expectThat`` now fails tests run with ``AsynchronousDeferredRunTest``. (Jonathan Lange, #1532452) * New ``testtools.twistedsupport`` package that collects all of our Twisted support code in one place, including that currently available under ``testtools.deferredruntest``. (Jonathan Lange) * New matchers for testing ``Deferred`` code: ``failed``, ``succeeded``, and ``has_no_result``. (Jonathan Lange, Tristan Seligmann, #1369134) * ``TestCase`` objects can now be run twice. All internal state is reset between runs. In particular, testtools tests can now be run with ``trial -u``. (Jonathan Lange, #1517879) * Fixed bug where if an asynchronous ``Deferred`` test times out but the ``Deferred`` then fires, the entire test run would abort with ``KeyboardInterrupt``, failing the currently running test. (Jonathan Lange, James Westby) Changes ------- * Add a new test dependency of testscenarios. (Robert Collins) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) * ``run_with_log_observers`` is deprecated. * ``addCleanup`` can now only be called within a test run. (Jonathan Lange) * ``TestCase.skip`` deprecated. Use ``skipTest`` instead. (Jonathan Lange, #988893) * Getting ``expected`` or ``observed`` attributes from binary comparison mismatches (e.g. ``Equals(2).match(3).expected``) is now deprecated. (Jonathan Lange) * Last release of testtools to support Python 3.2. (Jonathan Lange) * Last release of testtools to support Python 2.6. (Jonathan Lange) * Report on all duplicate test ids when sorting test suites that contain duplicate ids. (Thomas Bechtold, Jonathan Lange, #1390082) * Add ``readthedocs-requirements.txt`` so readthedocs.org can build the Twisted API documentation. (Jonathan Lange) 1.8.1 ~~~~~ Improvements ------------ * Documented more explicitly how to build and install testtools in the hacking documentation. (Thomi Richards) * ``deferredruntest`` now works with Twisted 15.1.0 and later. (Colin Watson, #1488710) 1.8.0 ~~~~~ Improvements ------------ * AsynchronousDeferredRunTest now correctly attaches the test log. Previously it attached an empty file. (Colin Watson) 1.7.1 ~~~~~ Improvements ------------ * Building a wheel on Python 3 was missing ``_compat2x.py`` needed for Python2. This was a side effect of the fix to bug #941958, where we fixed a cosmetic error. (Robert Collins, #1430534) * During reporting in ``TextTestResult`` now always uses ``ceil`` rather than depending on the undefined rounding behaviour in string formatting. (Robert Collins) 1.7.0 ~~~~~ Improvements ------------ * Empty attachments to tests were triggering a file payload of None in the ``ExtendedToStreamDecorator`` code, which caused multiple copies of attachments that had been output prior to the empty one. (Robert Collins, #1378609) 1.6.1 ~~~~~ Changes ------- * Fix installing when ``extras`` is not already installed. Our guards for the absence of unittest2 were not sufficient. (Robert Collins, #1430076) 1.6.0 ~~~~~ Improvements ------------ * ``testtools.run`` now accepts ``--locals`` to show local variables in tracebacks, which can be a significant aid in debugging. In doing so we've removed the code reimplementing linecache and traceback by using the new traceback2 and linecache2 packages. (Robert Collins, github #111) Changes ------- * ``testtools`` now depends on ``unittest2`` 1.0.0 which brings in a dependency on ``traceback2`` and via it ``linecache2``. (Robert Collins)
2017-02-22 15:20:56 +01:00
${PYSITELIB}/testtools/tests/matchers/test_const.py
${PYSITELIB}/testtools/tests/matchers/test_const.pyc
${PYSITELIB}/testtools/tests/matchers/test_const.pyo
Update py-testtools to 0.9.24. 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 ~~~~~~ Improvements ------------ * ``DirContains`` correctly exposed, after being accidentally hidden in the great matcher re-organization of 0.9.17. (Jonathan Lange) 0.9.20 ~~~~~~ Three new matchers that'll rock your world. Improvements ------------ * New, powerful matchers that match items in a dictionary: - ``MatchesDict``, match every key in a dictionary with a key in a dictionary of matchers. For when the set of expected keys is equal to the set of observed keys. - ``ContainsDict``, every key in a dictionary of matchers must be found in a dictionary, and the values for those keys must match. For when the set of expected keys is a subset of the set of observed keys. - ``ContainedByDict``, every key in a dictionary must be found in a dictionary of matchers. For when the set of expected keys is a superset of the set of observed keys. The names are a little confusing, sorry. We're still trying to figure out how to present the concept in the simplest way possible. 0.9.19 ~~~~~~ How embarrassing! Three releases in two days. We've worked out the kinks and have confirmation from our downstreams that this is all good. Should be the last release for a little while. Please ignore 0.9.18 and 0.9.17. Improvements ------------ * Include the matcher tests in the release, allowing the tests to run and pass from the release tarball. (Jonathan Lange) * Fix cosmetic test failures in Python 3.3, introduced during release 0.9.17. (Jonathan Lange) 0.9.18 ~~~~~~ Due to an oversight, release 0.9.18 did not contain the new ``testtools.matchers`` package and was thus completely broken. This release corrects that, returning us all to normality. 0.9.17 ~~~~~~ This release brings better discover support and Python3.x improvements. There are still some test failures on Python3.3 but they are cosmetic - the library is as usable there as on any other Python 3 release. Changes ------- * The ``testtools.matchers`` package has been split up. No change to the public interface. (Jonathan Lange) Improvements ------------ * ``python -m testtools.run discover . --list`` now works. (Robert Collins) * Correctly handling of bytes vs text in JSON content type. (Martin [gz]) 0.9.16 ~~~~~~ Some new matchers and a new content helper for JSON content. This is the first release of testtools to drop support for Python 2.4 and 2.5. If you need support for either of those versions, please use testtools 0.9.15. Improvements ------------ * New content helper, ``json_content`` (Jonathan Lange) * New matchers: * ``ContainsAll`` for asserting one thing is a subset of another (Raphaël Badin) * ``SameMembers`` for asserting two iterators have the same members. (Jonathan Lange) * Reraising of exceptions in Python 3 is more reliable. (Martin [gz])
2013-01-19 12:03:17 +01:00
${PYSITELIB}/testtools/tests/matchers/test_datastructures.py
${PYSITELIB}/testtools/tests/matchers/test_datastructures.pyc
${PYSITELIB}/testtools/tests/matchers/test_datastructures.pyo
${PYSITELIB}/testtools/tests/matchers/test_dict.py
${PYSITELIB}/testtools/tests/matchers/test_dict.pyc
${PYSITELIB}/testtools/tests/matchers/test_dict.pyo
${PYSITELIB}/testtools/tests/matchers/test_doctest.py
${PYSITELIB}/testtools/tests/matchers/test_doctest.pyc
${PYSITELIB}/testtools/tests/matchers/test_doctest.pyo
${PYSITELIB}/testtools/tests/matchers/test_exception.py
${PYSITELIB}/testtools/tests/matchers/test_exception.pyc
${PYSITELIB}/testtools/tests/matchers/test_exception.pyo
${PYSITELIB}/testtools/tests/matchers/test_filesystem.py
${PYSITELIB}/testtools/tests/matchers/test_filesystem.pyc
${PYSITELIB}/testtools/tests/matchers/test_filesystem.pyo
${PYSITELIB}/testtools/tests/matchers/test_higherorder.py
${PYSITELIB}/testtools/tests/matchers/test_higherorder.pyc
${PYSITELIB}/testtools/tests/matchers/test_higherorder.pyo
${PYSITELIB}/testtools/tests/matchers/test_impl.py
${PYSITELIB}/testtools/tests/matchers/test_impl.pyc
${PYSITELIB}/testtools/tests/matchers/test_impl.pyo
Updated py-testtools to 2.2.0. 2.2.0 ~~~~~ Improvements ------------ * Twisted support code uses ``inlineCallbacks`` rather than the deprecated ``deferredGenerator``. (Tristan Seligmann) 2.1.0 ~~~~~ Improvements ------------ * ``TestResult`` objects that don't implement ``stop``/``shouldStop`` are now handled sanely. (Jonathan Lange) * New ``Always`` and ``Never`` matchers. (Tristan Seligmann, #947026) * Fixed example in ``failed`` docstring. (Jonathan Lange, Github #208) * Rather than explicitly raising a ``KeyboardInterrupt`` if we get no result from a ``Deferred``, we tell the test result to stop running tests and report the lack of result as a test error. This ought to make weird concurrency interaction bugs easier to understand. (Jonathan Lange) * Introduce the unique_text_generator generator function. Similar to the getUniqueString() method, except it creates unique unicode text strings. (Brant Knudson) * Previously, when gathering details caused by a setUp() failure, a traceback occurred if the fixture used the newer _setUp(). This had the side effect of not clearing up fixtures nor gathering details properly. This is now fixed. (Julian Edwards, #1469759) * New ``Warnings`` matcher, and ``WarningMessage`` and ``IsDeprecated`` functions for matching emitted warnings. (Jonathan Jacobs, Github #223) 2.0.0 ~~~~~ Just a few tweaks to our Twisted support. Major version bump to indicate that Python 2.6 & 3.2 are no longer supported. Changes ------- * ``AsynchronousDeferredRunTest`` now has ``suppress_twisted_logging`` and ``store_twisted_logs`` parameters that can be used to override the default logging behaviour. (Jonathan Lange, #942785) * New fixture ``CaptureTwistedLogs`` that can be used with ``AsynchronousDeferredRunTest`` to attach a detail containing everything logged to Twisted during the test run. (Jonathan Lange, #1515362) * Python 2.6 and 3.2 are no longer supported. If you want to use either of these versions of Python, use testtools 1.9.0. (Jonathan Lange) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) 1.9.0 ~~~~~ Many new fixes in this branch, including lots of work around Twisted support. This is the first release that explicitly supports Python 3.5 and the last release that supports Python 2.6 or 3.2. Thanks to all who contributed! Improvements ------------ * Python 3.5 added to the list of supported platforms. (Jonathan Lange) * ``MatchesListwise`` has more informative error when lengths don't match. (Jonathan Lange) * The short form of errors for failed binary comparisions will now put the expected value on the _right_. This means that ``assertThat(2, Equals(3))`` will raise an error saying ``2 != 3``. (Jonathan Lange, #1525227) * Tests for ``assertRaisesRegexp``. (Julia Varlamova, Jonathan Lange) * Tests that customize ``skipException`` no longer get tracebacks for skipped tests. (Jonathan Lange, #1518101) * A failing ``expectThat`` now fails tests run with ``AsynchronousDeferredRunTest``. (Jonathan Lange, #1532452) * New ``testtools.twistedsupport`` package that collects all of our Twisted support code in one place, including that currently available under ``testtools.deferredruntest``. (Jonathan Lange) * New matchers for testing ``Deferred`` code: ``failed``, ``succeeded``, and ``has_no_result``. (Jonathan Lange, Tristan Seligmann, #1369134) * ``TestCase`` objects can now be run twice. All internal state is reset between runs. In particular, testtools tests can now be run with ``trial -u``. (Jonathan Lange, #1517879) * Fixed bug where if an asynchronous ``Deferred`` test times out but the ``Deferred`` then fires, the entire test run would abort with ``KeyboardInterrupt``, failing the currently running test. (Jonathan Lange, James Westby) Changes ------- * Add a new test dependency of testscenarios. (Robert Collins) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) * ``run_with_log_observers`` is deprecated. * ``addCleanup`` can now only be called within a test run. (Jonathan Lange) * ``TestCase.skip`` deprecated. Use ``skipTest`` instead. (Jonathan Lange, #988893) * Getting ``expected`` or ``observed`` attributes from binary comparison mismatches (e.g. ``Equals(2).match(3).expected``) is now deprecated. (Jonathan Lange) * Last release of testtools to support Python 3.2. (Jonathan Lange) * Last release of testtools to support Python 2.6. (Jonathan Lange) * Report on all duplicate test ids when sorting test suites that contain duplicate ids. (Thomas Bechtold, Jonathan Lange, #1390082) * Add ``readthedocs-requirements.txt`` so readthedocs.org can build the Twisted API documentation. (Jonathan Lange) 1.8.1 ~~~~~ Improvements ------------ * Documented more explicitly how to build and install testtools in the hacking documentation. (Thomi Richards) * ``deferredruntest`` now works with Twisted 15.1.0 and later. (Colin Watson, #1488710) 1.8.0 ~~~~~ Improvements ------------ * AsynchronousDeferredRunTest now correctly attaches the test log. Previously it attached an empty file. (Colin Watson) 1.7.1 ~~~~~ Improvements ------------ * Building a wheel on Python 3 was missing ``_compat2x.py`` needed for Python2. This was a side effect of the fix to bug #941958, where we fixed a cosmetic error. (Robert Collins, #1430534) * During reporting in ``TextTestResult`` now always uses ``ceil`` rather than depending on the undefined rounding behaviour in string formatting. (Robert Collins) 1.7.0 ~~~~~ Improvements ------------ * Empty attachments to tests were triggering a file payload of None in the ``ExtendedToStreamDecorator`` code, which caused multiple copies of attachments that had been output prior to the empty one. (Robert Collins, #1378609) 1.6.1 ~~~~~ Changes ------- * Fix installing when ``extras`` is not already installed. Our guards for the absence of unittest2 were not sufficient. (Robert Collins, #1430076) 1.6.0 ~~~~~ Improvements ------------ * ``testtools.run`` now accepts ``--locals`` to show local variables in tracebacks, which can be a significant aid in debugging. In doing so we've removed the code reimplementing linecache and traceback by using the new traceback2 and linecache2 packages. (Robert Collins, github #111) Changes ------- * ``testtools`` now depends on ``unittest2`` 1.0.0 which brings in a dependency on ``traceback2`` and via it ``linecache2``. (Robert Collins)
2017-02-22 15:20:56 +01:00
${PYSITELIB}/testtools/tests/matchers/test_warnings.py
${PYSITELIB}/testtools/tests/matchers/test_warnings.pyc
${PYSITELIB}/testtools/tests/matchers/test_warnings.pyo
${PYSITELIB}/testtools/tests/samplecases.py
${PYSITELIB}/testtools/tests/samplecases.pyc
${PYSITELIB}/testtools/tests/samplecases.pyo
Update py-testtools to 1.0.0. testtools NEWS ++++++++++++++ Changes and improvements to testtools_, grouped by release. 1.0.0 ~~~~~ Long overdue, we've adopted a backwards compatibility statement and recognized that we have plenty of users depending on our behaviour - calling our version 1.0.0 is a recognition of that. Improvements ------------ * Fix a long-standing bug where tearDown and cleanUps would not be called if the test run was interrupted. This should fix leaking external resources from interrupted tests. (Robert Collins, #1364188) * Fix a long-standing bug where calling sys.exit(0) from within a test would cause the test suite to exit with 0, without reporting a failure of that test. We still allow the test suite to be exited (since catching higher order exceptions requires exceptional circumstances) but we now call a last-resort handler on the TestCase, resulting in an error being reported for the test. (Robert Collins, #1364188) * Fix an issue where tests skipped with the ``skip``* family of decorators would still have their ``setUp`` and ``tearDown`` functions called. (Thomi Richards, #https://github.com/testing-cabal/testtools/issues/86) * We have adopted a formal backwards compatibility statement (see hacking.rst) (Robert Collins) 0.9.39 ~~~~~~ Brown paper bag release - 0.9.38 was broken for some users, _jython_aware_splitext was not defined entirely compatibly. (Robert Collins, #https://github.com/testing-cabal/testtools/issues/100) 0.9.38 ~~~~~~ Bug fixes for test importing. Improvements ------------ * Discovery import error detection wasn't implemented for python 2.6 (the 'discover' module). (Robert Collins) * Discovery now executes load_tests (if present) in __init__ in all packages. (Robert Collins, http://bugs.python.org/issue16662) 0.9.37 ~~~~~~ Minor improvements to correctness. Changes ------- * ``stdout`` is now correctly honoured on ``run.TestProgram`` - before the runner objects would be created with no stdout parameter. If construction fails, the previous parameter list is attempted, permitting compatibility with Runner classes that don't accept stdout as a parameter. (Robert Collins) * The ``ExtendedToStreamDecorator`` now handles content objects with one less packet - the last packet of the source content is sent with EOF set rather than an empty packet with EOF set being sent after the last packet of the source content. (Robert Collins) 0.9.36 ~~~~~~ Welcome to our long overdue 0.9.36 release, which improves compatibility with Python3.4, adds assert_that, a function for using matchers without TestCase objects, and finally will error if you try to use setUp or tearDown twice - since that invariably leads to bad things of one sort or another happening. Changes ------- * Error if ``setUp`` or ``tearDown`` are called twice. (Robert Collins, #882884) * Make testtools compatible with the ``unittest.expectedFailure`` decorator in Python 3.4. (Thomi Richards) Improvements ------------ * Introduce the assert_that function, which allows matchers to be used independent of testtools.TestCase. (Daniel Watkins, #1243834)
2014-09-10 11:01:49 +02:00
${PYSITELIB}/testtools/tests/test_assert_that.py
${PYSITELIB}/testtools/tests/test_assert_that.pyc
${PYSITELIB}/testtools/tests/test_assert_that.pyo
${PYSITELIB}/testtools/tests/test_compat.py
${PYSITELIB}/testtools/tests/test_compat.pyc
${PYSITELIB}/testtools/tests/test_compat.pyo
${PYSITELIB}/testtools/tests/test_content.py
${PYSITELIB}/testtools/tests/test_content.pyc
${PYSITELIB}/testtools/tests/test_content.pyo
${PYSITELIB}/testtools/tests/test_content_type.py
${PYSITELIB}/testtools/tests/test_content_type.pyc
${PYSITELIB}/testtools/tests/test_content_type.pyo
${PYSITELIB}/testtools/tests/test_distutilscmd.py
${PYSITELIB}/testtools/tests/test_distutilscmd.pyc
${PYSITELIB}/testtools/tests/test_distutilscmd.pyo
${PYSITELIB}/testtools/tests/test_fixturesupport.py
${PYSITELIB}/testtools/tests/test_fixturesupport.pyc
${PYSITELIB}/testtools/tests/test_fixturesupport.pyo
${PYSITELIB}/testtools/tests/test_helpers.py
${PYSITELIB}/testtools/tests/test_helpers.pyc
${PYSITELIB}/testtools/tests/test_helpers.pyo
${PYSITELIB}/testtools/tests/test_monkey.py
${PYSITELIB}/testtools/tests/test_monkey.pyc
${PYSITELIB}/testtools/tests/test_monkey.pyo
${PYSITELIB}/testtools/tests/test_run.py
${PYSITELIB}/testtools/tests/test_run.pyc
${PYSITELIB}/testtools/tests/test_run.pyo
${PYSITELIB}/testtools/tests/test_runtest.py
${PYSITELIB}/testtools/tests/test_runtest.pyc
${PYSITELIB}/testtools/tests/test_runtest.pyo
Update py-testtools to 0.9.15. 0.9.15 ~~~~~~ This is the last release to support Python2.4 and 2.5. It brings in a slew of improvements to test tagging and concurrency, making running large test suites with partitioned workers more reliable and easier to reproduce exact test ordering in a given worker. See our sister project ``testrepository`` for a test runner that uses these features. Changes ------- * ``PlaceHolder`` and ``ErrorHolder`` now support being given result details. (Robert Collins) * ``ErrorHolder`` is now just a function - all the logic is in ``PlaceHolder``. (Robert Collins) * ``TestResult`` and all other ``TestResult``-like objects in testtools distinguish between global tags and test-local tags, as per the subunit specification. (Jonathan Lange) * This is the **last** release of testtools that supports Python 2.4 or 2.5. These releases are no longer supported by the Python community and do not receive security updates. If this affects you, you will need to either stay on this release or perform your own backports. (Jonathan Lange, Robert Collins) * ``ThreadsafeForwardingResult`` now forwards global tags as test-local tags, making reasoning about the correctness of the multiplexed stream simpler. This preserves the semantic value (what tags apply to a given test) while consuming less stream size (as no negative-tag statement is needed). (Robert Collins, Gary Poster, #986434) Improvements ------------ * API documentation corrections. (Raphaël Badin) * ``ConcurrentTestSuite`` now takes an optional ``wrap_result`` parameter that can be used to wrap the ``ThreadsafeForwardingResult``s created by the suite. (Jonathan Lange) * ``Tagger`` added. It's a new ``TestResult`` that tags all tests sent to it with a particular set of tags. (Jonathan Lange) * ``testresultdecorator`` brought over from subunit. (Jonathan Lange) * All ``TestResult`` wrappers now correctly forward ``current_tags`` from their wrapped results, meaning that ``current_tags`` can always be relied upon to return the currently active tags on a test result. * ``TestByTestResult``, a ``TestResult`` that calls a method once per test, added. (Jonathan Lange) * ``ThreadsafeForwardingResult`` correctly forwards ``tags()`` calls where only one of ``new_tags`` or ``gone_tags`` are specified. (Jonathan Lange, #980263) * ``ThreadsafeForwardingResult`` no longer leaks local tags from one test into all future tests run. (Jonathan Lange, #985613) * ``ThreadsafeForwardingResult`` has many, many more tests. (Jonathan Lange)
2012-09-16 14:37:51 +02:00
${PYSITELIB}/testtools/tests/test_tags.py
${PYSITELIB}/testtools/tests/test_tags.pyc
${PYSITELIB}/testtools/tests/test_tags.pyo
Update py-testtools to 0.9.12. 0.9.12 ~~~~~~ This is a very big release. We've made huge improvements on three fronts: 1. Test failures are way nicer and easier to read 2. Matchers and ``assertThat`` are much more convenient to use 3. Correct handling of extended unicode characters We've trimmed off the fat from the stack trace you get when tests fail, we've cut out the bits of error messages that just didn't help, we've made it easier to annotate mismatch failures, to compare complex objects and to match raised exceptions. Testing code was never this fun. Changes ------- * ``AfterPreproccessing`` renamed to ``AfterPreprocessing``, which is a more correct spelling. Old name preserved for backwards compatibility, but is now deprecated. Please stop using it. (Jonathan Lange, #813460) * ``assertThat`` raises ``MismatchError`` instead of ``TestCase.failureException``. ``MismatchError`` is a subclass of ``AssertionError``, so in most cases this change will not matter. However, if ``self.failureException`` has been set to a non-default value, then mismatches will become test errors rather than test failures. * ``gather_details`` takes two dicts, rather than two detailed objects. (Jonathan Lange, #801027) * ``MatchesRegex`` mismatch now says "<value> does not match /<regex>/" rather than "<regex> did not match <value>". The regular expression contains fewer backslashes too. (Jonathan Lange, #818079) * Tests that run with ``AsynchronousDeferredRunTest`` now have the ``reactor`` attribute set to the running reactor. (Jonathan Lange, #720749) Improvements ------------ * All public matchers are now in ``testtools.matchers.__all__``. (Jonathan Lange, #784859) * ``assertThat`` can actually display mismatches and matchers that contain extended unicode characters. (Jonathan Lange, Martin [gz], #804127) * ``assertThat`` output is much less verbose, displaying only what the mismatch tells us to display. Old-style verbose output can be had by passing ``verbose=True`` to assertThat. (Jonathan Lange, #675323, #593190) * ``assertThat`` accepts a message which will be used to annotate the matcher. This can be given as a third parameter or as a keyword parameter. (Robert Collins) * Automated the Launchpad part of the release process. (Jonathan Lange, #623486) * Correctly display non-ASCII unicode output on terminals that claim to have a unicode encoding. (Martin [gz], #804122) * ``DocTestMatches`` correctly handles unicode output from examples, rather than raising an error. (Martin [gz], #764170) * ``ErrorHolder`` and ``PlaceHolder`` added to docs. (Jonathan Lange, #816597) * ``ExpectedException`` now matches any exception of the given type by default, and also allows specifying a ``Matcher`` rather than a mere regular expression. (Jonathan Lange, #791889) * ``FixtureSuite`` added, allows test suites to run with a given fixture. (Jonathan Lange) * Hide testtools's own stack frames when displaying tracebacks, making it easier for test authors to focus on their errors. (Jonathan Lange, Martin [gz], #788974) * Less boilerplate displayed in test failures and errors. (Jonathan Lange, #660852) * ``MatchesException`` now allows you to match exceptions against any matcher, rather than just regular expressions. (Jonathan Lange, #791889) * ``MatchesException`` now permits a tuple of types rather than a single type (when using the type matching mode). (Robert Collins) * ``MatchesStructure.byEquality`` added to make the common case of matching many attributes by equality much easier. ``MatchesStructure.byMatcher`` added in case folk want to match by things other than equality. (Jonathan Lange) * New convenience assertions, ``assertIsNone`` and ``assertIsNotNone``. (Christian Kampka) * New matchers: * ``AllMatch`` matches many values against a single matcher. (Jonathan Lange, #615108) * ``Contains``. (Robert Collins) * ``GreaterThan``. (Christian Kampka) * New helper, ``safe_hasattr`` added. (Jonathan Lange) * ``reraise`` added to ``testtools.compat``. (Jonathan Lange)
2011-10-07 12:45:06 +02:00
${PYSITELIB}/testtools/tests/test_testcase.py
${PYSITELIB}/testtools/tests/test_testcase.pyc
${PYSITELIB}/testtools/tests/test_testcase.pyo
${PYSITELIB}/testtools/tests/test_testresult.py
${PYSITELIB}/testtools/tests/test_testresult.pyc
${PYSITELIB}/testtools/tests/test_testresult.pyo
${PYSITELIB}/testtools/tests/test_testsuite.py
${PYSITELIB}/testtools/tests/test_testsuite.pyc
${PYSITELIB}/testtools/tests/test_testsuite.pyo
${PYSITELIB}/testtools/tests/test_with_with.py
${PYSITELIB}/testtools/tests/test_with_with.pyc
${PYSITELIB}/testtools/tests/test_with_with.pyo
Updated py-testtools to 2.2.0. 2.2.0 ~~~~~ Improvements ------------ * Twisted support code uses ``inlineCallbacks`` rather than the deprecated ``deferredGenerator``. (Tristan Seligmann) 2.1.0 ~~~~~ Improvements ------------ * ``TestResult`` objects that don't implement ``stop``/``shouldStop`` are now handled sanely. (Jonathan Lange) * New ``Always`` and ``Never`` matchers. (Tristan Seligmann, #947026) * Fixed example in ``failed`` docstring. (Jonathan Lange, Github #208) * Rather than explicitly raising a ``KeyboardInterrupt`` if we get no result from a ``Deferred``, we tell the test result to stop running tests and report the lack of result as a test error. This ought to make weird concurrency interaction bugs easier to understand. (Jonathan Lange) * Introduce the unique_text_generator generator function. Similar to the getUniqueString() method, except it creates unique unicode text strings. (Brant Knudson) * Previously, when gathering details caused by a setUp() failure, a traceback occurred if the fixture used the newer _setUp(). This had the side effect of not clearing up fixtures nor gathering details properly. This is now fixed. (Julian Edwards, #1469759) * New ``Warnings`` matcher, and ``WarningMessage`` and ``IsDeprecated`` functions for matching emitted warnings. (Jonathan Jacobs, Github #223) 2.0.0 ~~~~~ Just a few tweaks to our Twisted support. Major version bump to indicate that Python 2.6 & 3.2 are no longer supported. Changes ------- * ``AsynchronousDeferredRunTest`` now has ``suppress_twisted_logging`` and ``store_twisted_logs`` parameters that can be used to override the default logging behaviour. (Jonathan Lange, #942785) * New fixture ``CaptureTwistedLogs`` that can be used with ``AsynchronousDeferredRunTest`` to attach a detail containing everything logged to Twisted during the test run. (Jonathan Lange, #1515362) * Python 2.6 and 3.2 are no longer supported. If you want to use either of these versions of Python, use testtools 1.9.0. (Jonathan Lange) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) 1.9.0 ~~~~~ Many new fixes in this branch, including lots of work around Twisted support. This is the first release that explicitly supports Python 3.5 and the last release that supports Python 2.6 or 3.2. Thanks to all who contributed! Improvements ------------ * Python 3.5 added to the list of supported platforms. (Jonathan Lange) * ``MatchesListwise`` has more informative error when lengths don't match. (Jonathan Lange) * The short form of errors for failed binary comparisions will now put the expected value on the _right_. This means that ``assertThat(2, Equals(3))`` will raise an error saying ``2 != 3``. (Jonathan Lange, #1525227) * Tests for ``assertRaisesRegexp``. (Julia Varlamova, Jonathan Lange) * Tests that customize ``skipException`` no longer get tracebacks for skipped tests. (Jonathan Lange, #1518101) * A failing ``expectThat`` now fails tests run with ``AsynchronousDeferredRunTest``. (Jonathan Lange, #1532452) * New ``testtools.twistedsupport`` package that collects all of our Twisted support code in one place, including that currently available under ``testtools.deferredruntest``. (Jonathan Lange) * New matchers for testing ``Deferred`` code: ``failed``, ``succeeded``, and ``has_no_result``. (Jonathan Lange, Tristan Seligmann, #1369134) * ``TestCase`` objects can now be run twice. All internal state is reset between runs. In particular, testtools tests can now be run with ``trial -u``. (Jonathan Lange, #1517879) * Fixed bug where if an asynchronous ``Deferred`` test times out but the ``Deferred`` then fires, the entire test run would abort with ``KeyboardInterrupt``, failing the currently running test. (Jonathan Lange, James Westby) Changes ------- * Add a new test dependency of testscenarios. (Robert Collins) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) * ``run_with_log_observers`` is deprecated. * ``addCleanup`` can now only be called within a test run. (Jonathan Lange) * ``TestCase.skip`` deprecated. Use ``skipTest`` instead. (Jonathan Lange, #988893) * Getting ``expected`` or ``observed`` attributes from binary comparison mismatches (e.g. ``Equals(2).match(3).expected``) is now deprecated. (Jonathan Lange) * Last release of testtools to support Python 3.2. (Jonathan Lange) * Last release of testtools to support Python 2.6. (Jonathan Lange) * Report on all duplicate test ids when sorting test suites that contain duplicate ids. (Thomas Bechtold, Jonathan Lange, #1390082) * Add ``readthedocs-requirements.txt`` so readthedocs.org can build the Twisted API documentation. (Jonathan Lange) 1.8.1 ~~~~~ Improvements ------------ * Documented more explicitly how to build and install testtools in the hacking documentation. (Thomi Richards) * ``deferredruntest`` now works with Twisted 15.1.0 and later. (Colin Watson, #1488710) 1.8.0 ~~~~~ Improvements ------------ * AsynchronousDeferredRunTest now correctly attaches the test log. Previously it attached an empty file. (Colin Watson) 1.7.1 ~~~~~ Improvements ------------ * Building a wheel on Python 3 was missing ``_compat2x.py`` needed for Python2. This was a side effect of the fix to bug #941958, where we fixed a cosmetic error. (Robert Collins, #1430534) * During reporting in ``TextTestResult`` now always uses ``ceil`` rather than depending on the undefined rounding behaviour in string formatting. (Robert Collins) 1.7.0 ~~~~~ Improvements ------------ * Empty attachments to tests were triggering a file payload of None in the ``ExtendedToStreamDecorator`` code, which caused multiple copies of attachments that had been output prior to the empty one. (Robert Collins, #1378609) 1.6.1 ~~~~~ Changes ------- * Fix installing when ``extras`` is not already installed. Our guards for the absence of unittest2 were not sufficient. (Robert Collins, #1430076) 1.6.0 ~~~~~ Improvements ------------ * ``testtools.run`` now accepts ``--locals`` to show local variables in tracebacks, which can be a significant aid in debugging. In doing so we've removed the code reimplementing linecache and traceback by using the new traceback2 and linecache2 packages. (Robert Collins, github #111) Changes ------- * ``testtools`` now depends on ``unittest2`` 1.0.0 which brings in a dependency on ``traceback2`` and via it ``linecache2``. (Robert Collins)
2017-02-22 15:20:56 +01:00
${PYSITELIB}/testtools/tests/twistedsupport/__init__.py
${PYSITELIB}/testtools/tests/twistedsupport/__init__.pyc
${PYSITELIB}/testtools/tests/twistedsupport/__init__.pyo
${PYSITELIB}/testtools/tests/twistedsupport/_helpers.py
${PYSITELIB}/testtools/tests/twistedsupport/_helpers.pyc
${PYSITELIB}/testtools/tests/twistedsupport/_helpers.pyo
${PYSITELIB}/testtools/tests/twistedsupport/test_deferred.py
${PYSITELIB}/testtools/tests/twistedsupport/test_deferred.pyc
${PYSITELIB}/testtools/tests/twistedsupport/test_deferred.pyo
${PYSITELIB}/testtools/tests/twistedsupport/test_matchers.py
${PYSITELIB}/testtools/tests/twistedsupport/test_matchers.pyc
${PYSITELIB}/testtools/tests/twistedsupport/test_matchers.pyo
${PYSITELIB}/testtools/tests/twistedsupport/test_runtest.py
${PYSITELIB}/testtools/tests/twistedsupport/test_runtest.pyc
${PYSITELIB}/testtools/tests/twistedsupport/test_runtest.pyo
${PYSITELIB}/testtools/tests/twistedsupport/test_spinner.py
${PYSITELIB}/testtools/tests/twistedsupport/test_spinner.pyc
${PYSITELIB}/testtools/tests/twistedsupport/test_spinner.pyo
${PYSITELIB}/testtools/testsuite.py
${PYSITELIB}/testtools/testsuite.pyc
${PYSITELIB}/testtools/testsuite.pyo
Updated py-testtools to 2.2.0. 2.2.0 ~~~~~ Improvements ------------ * Twisted support code uses ``inlineCallbacks`` rather than the deprecated ``deferredGenerator``. (Tristan Seligmann) 2.1.0 ~~~~~ Improvements ------------ * ``TestResult`` objects that don't implement ``stop``/``shouldStop`` are now handled sanely. (Jonathan Lange) * New ``Always`` and ``Never`` matchers. (Tristan Seligmann, #947026) * Fixed example in ``failed`` docstring. (Jonathan Lange, Github #208) * Rather than explicitly raising a ``KeyboardInterrupt`` if we get no result from a ``Deferred``, we tell the test result to stop running tests and report the lack of result as a test error. This ought to make weird concurrency interaction bugs easier to understand. (Jonathan Lange) * Introduce the unique_text_generator generator function. Similar to the getUniqueString() method, except it creates unique unicode text strings. (Brant Knudson) * Previously, when gathering details caused by a setUp() failure, a traceback occurred if the fixture used the newer _setUp(). This had the side effect of not clearing up fixtures nor gathering details properly. This is now fixed. (Julian Edwards, #1469759) * New ``Warnings`` matcher, and ``WarningMessage`` and ``IsDeprecated`` functions for matching emitted warnings. (Jonathan Jacobs, Github #223) 2.0.0 ~~~~~ Just a few tweaks to our Twisted support. Major version bump to indicate that Python 2.6 & 3.2 are no longer supported. Changes ------- * ``AsynchronousDeferredRunTest`` now has ``suppress_twisted_logging`` and ``store_twisted_logs`` parameters that can be used to override the default logging behaviour. (Jonathan Lange, #942785) * New fixture ``CaptureTwistedLogs`` that can be used with ``AsynchronousDeferredRunTest`` to attach a detail containing everything logged to Twisted during the test run. (Jonathan Lange, #1515362) * Python 2.6 and 3.2 are no longer supported. If you want to use either of these versions of Python, use testtools 1.9.0. (Jonathan Lange) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) 1.9.0 ~~~~~ Many new fixes in this branch, including lots of work around Twisted support. This is the first release that explicitly supports Python 3.5 and the last release that supports Python 2.6 or 3.2. Thanks to all who contributed! Improvements ------------ * Python 3.5 added to the list of supported platforms. (Jonathan Lange) * ``MatchesListwise`` has more informative error when lengths don't match. (Jonathan Lange) * The short form of errors for failed binary comparisions will now put the expected value on the _right_. This means that ``assertThat(2, Equals(3))`` will raise an error saying ``2 != 3``. (Jonathan Lange, #1525227) * Tests for ``assertRaisesRegexp``. (Julia Varlamova, Jonathan Lange) * Tests that customize ``skipException`` no longer get tracebacks for skipped tests. (Jonathan Lange, #1518101) * A failing ``expectThat`` now fails tests run with ``AsynchronousDeferredRunTest``. (Jonathan Lange, #1532452) * New ``testtools.twistedsupport`` package that collects all of our Twisted support code in one place, including that currently available under ``testtools.deferredruntest``. (Jonathan Lange) * New matchers for testing ``Deferred`` code: ``failed``, ``succeeded``, and ``has_no_result``. (Jonathan Lange, Tristan Seligmann, #1369134) * ``TestCase`` objects can now be run twice. All internal state is reset between runs. In particular, testtools tests can now be run with ``trial -u``. (Jonathan Lange, #1517879) * Fixed bug where if an asynchronous ``Deferred`` test times out but the ``Deferred`` then fires, the entire test run would abort with ``KeyboardInterrupt``, failing the currently running test. (Jonathan Lange, James Westby) Changes ------- * Add a new test dependency of testscenarios. (Robert Collins) * Make ``fixtures`` a real dependency, not just a test dependency. (Jonathan Lange) * ``run_with_log_observers`` is deprecated. * ``addCleanup`` can now only be called within a test run. (Jonathan Lange) * ``TestCase.skip`` deprecated. Use ``skipTest`` instead. (Jonathan Lange, #988893) * Getting ``expected`` or ``observed`` attributes from binary comparison mismatches (e.g. ``Equals(2).match(3).expected``) is now deprecated. (Jonathan Lange) * Last release of testtools to support Python 3.2. (Jonathan Lange) * Last release of testtools to support Python 2.6. (Jonathan Lange) * Report on all duplicate test ids when sorting test suites that contain duplicate ids. (Thomas Bechtold, Jonathan Lange, #1390082) * Add ``readthedocs-requirements.txt`` so readthedocs.org can build the Twisted API documentation. (Jonathan Lange) 1.8.1 ~~~~~ Improvements ------------ * Documented more explicitly how to build and install testtools in the hacking documentation. (Thomi Richards) * ``deferredruntest`` now works with Twisted 15.1.0 and later. (Colin Watson, #1488710) 1.8.0 ~~~~~ Improvements ------------ * AsynchronousDeferredRunTest now correctly attaches the test log. Previously it attached an empty file. (Colin Watson) 1.7.1 ~~~~~ Improvements ------------ * Building a wheel on Python 3 was missing ``_compat2x.py`` needed for Python2. This was a side effect of the fix to bug #941958, where we fixed a cosmetic error. (Robert Collins, #1430534) * During reporting in ``TextTestResult`` now always uses ``ceil`` rather than depending on the undefined rounding behaviour in string formatting. (Robert Collins) 1.7.0 ~~~~~ Improvements ------------ * Empty attachments to tests were triggering a file payload of None in the ``ExtendedToStreamDecorator`` code, which caused multiple copies of attachments that had been output prior to the empty one. (Robert Collins, #1378609) 1.6.1 ~~~~~ Changes ------- * Fix installing when ``extras`` is not already installed. Our guards for the absence of unittest2 were not sufficient. (Robert Collins, #1430076) 1.6.0 ~~~~~ Improvements ------------ * ``testtools.run`` now accepts ``--locals`` to show local variables in tracebacks, which can be a significant aid in debugging. In doing so we've removed the code reimplementing linecache and traceback by using the new traceback2 and linecache2 packages. (Robert Collins, github #111) Changes ------- * ``testtools`` now depends on ``unittest2`` 1.0.0 which brings in a dependency on ``traceback2`` and via it ``linecache2``. (Robert Collins)
2017-02-22 15:20:56 +01:00
${PYSITELIB}/testtools/twistedsupport/__init__.py
${PYSITELIB}/testtools/twistedsupport/__init__.pyc
${PYSITELIB}/testtools/twistedsupport/__init__.pyo
${PYSITELIB}/testtools/twistedsupport/_deferred.py
${PYSITELIB}/testtools/twistedsupport/_deferred.pyc
${PYSITELIB}/testtools/twistedsupport/_deferred.pyo
${PYSITELIB}/testtools/twistedsupport/_deferreddebug.py
${PYSITELIB}/testtools/twistedsupport/_deferreddebug.pyc
${PYSITELIB}/testtools/twistedsupport/_deferreddebug.pyo
${PYSITELIB}/testtools/twistedsupport/_matchers.py
${PYSITELIB}/testtools/twistedsupport/_matchers.pyc
${PYSITELIB}/testtools/twistedsupport/_matchers.pyo
${PYSITELIB}/testtools/twistedsupport/_runtest.py
${PYSITELIB}/testtools/twistedsupport/_runtest.pyc
${PYSITELIB}/testtools/twistedsupport/_runtest.pyo
${PYSITELIB}/testtools/twistedsupport/_spinner.py
${PYSITELIB}/testtools/twistedsupport/_spinner.pyc
${PYSITELIB}/testtools/twistedsupport/_spinner.pyo
${PYSITELIB}/testtools/utils.py
${PYSITELIB}/testtools/utils.pyc
${PYSITELIB}/testtools/utils.pyo