Path to this page:
Subject: CVS commit: pkgsrc/devel/py-nose2
From: Adam Ciarcinski
Date: 2021-11-03 10:50:09
Message id: 20211103095010.05BE5FAEC@cvs.NetBSD.org
Log Message:
py-nose2: updated to 0.10.0
0.10.0 (2020-01-27)
-------------------
Added
~~~~~
* Support for subtests!
Notes for plugin authors about subtest support:
* Subtest failures will produce a ``TestOutcomeEvent`` with ``outcome = \
"subtest"``
* Subtest events can be failures, but they do not indicate success -- the
containing test will send a success event if no subtests fail
Changed
~~~~~~~
* Drop support for Python 3.4
* Python 3.8 and 3.9 are now officially supported
* Improve helptext for the multiprocess plugin's ``-N`` option
* When run with reduced verbosity (e.g. with ``-q``), ``nose2`` will no longer
print an empty line before test reports
Fixed
~~~~~
* The plugin registry will no longer contain duplicate plugins and or base
``event.Plugin`` instances
* Fix function test case implementation of ``id``, ``__str__``, and
``__repr__``. This removes the injected ``transplant_class.<locals>`` from
reporting output
* Doctest loading will now skip ``setup.py`` files in the project root
* Class methods decorated (e.g. with ``mock.patch``) are no longer incorrectly
picked up by the function loader
Files: