Sync from SUSE:ALP:Source:Standard:1.0 python-nose2 revision fc4bedfebc070e9f7c8a4c781f8a83ee
This commit is contained in:
154
python-nose2.changes
Normal file
154
python-nose2.changes
Normal file
@@ -0,0 +1,154 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 21 12:28:30 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- add sle15_python_module_pythons (jsc#PED-68)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 13 22:42:43 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Make calling of %{sle15modernpython} optional.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 20 11:46:12 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Update to 0.12.0
|
||||
* Note: The 0.12.x series will be the final releases of nose2
|
||||
which support Python 2.
|
||||
* Passing --junit-xml-path now implies --junit-xml when using the
|
||||
junitxml plugin. This means that the --junit-xml flag can be
|
||||
omitted when --junit-xml-path is specified. (:issue:`521`)
|
||||
* Remove the dependency on coverage. Use of the coverage plugin
|
||||
now requires that you either install coverage independently, or
|
||||
use the extra, nose2[coverage_plugin]. As a result, nose2 no
|
||||
longer has any strict dependencies
|
||||
* Remove the dependency on six, instead using a vendored copy.
|
||||
This ensures that the dependency for nose2 doesn't conflict
|
||||
with application dependencies
|
||||
* nose2 no longer provides an entry-point named based on the
|
||||
current python version, e.g. nose2-3.8 on python3.8 . Only the
|
||||
nose2 command is provided.
|
||||
* Remove support for setup.py test on nose2 itself. This usage is
|
||||
deprecated by setuptools. Developers contributing to nose2 are
|
||||
encouraged to use tox to run nose2's testsuite, per the
|
||||
contributing guide.
|
||||
- Release 0.11.0
|
||||
* Test classes now have their short description (first line of
|
||||
docstring) printed in verbose output
|
||||
* The junitxml plugin now sets timestamp on each testcase node as
|
||||
an ISO-8601 timestamp. Thanks to :user:`deeplow` for the
|
||||
contribution!
|
||||
* Drop support for Python 3.5
|
||||
* Python 3.10 is now officially supported. Python 3.11-dev will
|
||||
be supported on a best-effort basis. Thanks to :user:`hugovk`
|
||||
and :user:`tirkarthi` for their contributions!
|
||||
* Add support for test classes when running with the
|
||||
multiprocessing plugin. Thanks to :user:`ltfish` for the
|
||||
initial contribution and :user:`stefanholek` for the refinement
|
||||
to this change!
|
||||
- Release 0.10.0
|
||||
* 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
|
||||
* 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
|
||||
* 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
|
||||
- Drop patches
|
||||
* remove_unittest2.patch
|
||||
* ignore-warnings-doctests.patch
|
||||
* fix-mock-dep.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 4 11:04:22 UTC 2022 - pgajdos@suse.com
|
||||
|
||||
- python-mock is not required for build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 7 14:35:00 UTC 2021 - pgajdos@suse.com
|
||||
|
||||
- %check: use %pyunittest rpm macro
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 13:22:27 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
- Update to 0.9.2:
|
||||
* Add --junit-xml-path to the junit plugin argument list
|
||||
* It is now possible to use the multiprocess and coverage plugins together, as long as all of the coverage config is put into the config file
|
||||
* Minor changes to be compatible with newer pythons (3.8, 3.9)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 11 03:25:06 UTC 2019 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Add ignore-warnings-doctests.patch to supress warnings when running
|
||||
doctests.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 30 13:20:05 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
- Add dep on coverage as it is hard requirement based on requires
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 14 17:02:07 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
- Add patch to fix build with new mock versions:
|
||||
* fix-mock-dep.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 8 11:19:14 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||
|
||||
- update to 0.9.1
|
||||
- refresh remove_unittest2.patch
|
||||
* the prof plugin now uses cProfile instead of hotshot for profiling
|
||||
* skipped tests now include the user's reason in junit XML's message field
|
||||
* the prettyassert plugin mishandled multi-line function definitions
|
||||
* Using a plugin's CLI flag when the plugin is already enabled via config
|
||||
no longer errors
|
||||
* nose2.plugins.prettyassert, enabled with --pretty-assert
|
||||
* Cleanup code for EOLed python versions
|
||||
* Dropped support for distutils.
|
||||
* Result reporter respects failure status set by other plugins
|
||||
* JUnit XML plugin now includes the skip reason in its output
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 16 10:22:15 UTC 2018 - jengelh@inai.de
|
||||
|
||||
- Avoid name repetition in summary (rpmlint).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 13 12:13:57 UTC 2018 - mcepl@suse.com
|
||||
|
||||
- Remove dependency on unittest2
|
||||
Add remove_unittest2.patch to faciliate that
|
||||
- Upgrade to 0.8.0:
|
||||
List of changes is too long to show here, see
|
||||
https://github.com/nose-devs/nose2/blob/master/docs/changelog.rst
|
||||
changes between 0.6.5 and 0.8.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 28 06:07:30 UTC 2017 - jengelh@inai.de
|
||||
|
||||
- Update package description
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 24 09:10:11 UTC 2017 - alarrosa@suse.com
|
||||
|
||||
- Use singlespec macros
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 6 17:07:51 UTC 2017 - alarrosa@suse.com
|
||||
|
||||
- Initial release
|
||||
Reference in New Issue
Block a user