- update to 6.2:

* Add support for Python 3.12.
  * Update code and tests to ``python-subunit >= 1.4.3`` thus
    requiring at least this version.
- Update to version 5.6
- Update to 5.5.1
- updated spec to include
  * Fix test failures and deprecation warnings occurring when
    using Python 3.8a1.
  * Update the command line interface to use argparse instead of
  * Handle string in exception values when formatting chained
  * Enable DeprecationWarning earlier, when discovering test
- Changes from 4.4.0

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.testrunner?expand=0&rev=38
This commit is contained in:
Dirk Mueller 2023-12-11 08:16:25 +00:00 committed by Git OBS Bridge
parent 90552c3557
commit 76d40bd7b9
4 changed files with 22 additions and 14 deletions

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Mon Dec 11 08:13:01 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 6.2:
* Add support for Python 3.12.
* Update code and tests to ``python-subunit >= 1.4.3`` thus
requiring at least this version.
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 9 12:39:26 UTC 2023 - ecsos <ecsos@opensuse.org> Fri Jun 9 12:39:26 UTC 2023 - ecsos <ecsos@opensuse.org>
@ -13,7 +21,7 @@ Mon Apr 3 09:15:42 UTC 2023 - pgajdos@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Dec 13 17:47:23 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com> Tue Dec 13 17:47:23 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to version 5.6 - Update to version 5.6
* Add support for Python 3.11. * Add support for Python 3.11.
* Inline a small part of random.Random.shuffle which was deprecated in Python 3.9 and removed in 3.11 (#119). * Inline a small part of random.Random.shuffle which was deprecated in Python 3.9 and removed in 3.11 (#119).
* Dont trigger post mortem debugger for skipped tests. ( #141). * Dont trigger post mortem debugger for skipped tests. ( #141).
@ -21,13 +29,13 @@ Tue Dec 13 17:47:23 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Dec 3 03:06:31 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com> Sat Dec 3 03:06:31 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to 5.5.1 - Update to 5.5.1
* Fix: let --at-level=level with level <= 0 run the tests at all levels (rather than at no level) #138. * Fix: let --at-level=level with level <= 0 run the tests at all levels (rather than at no level) #138.
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 19 15:46:37 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com> Mon Sep 19 15:46:37 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- updated spec to include - updated spec to include
Requires(post): update-alternatives Requires(post): update-alternatives
Requires(postun):update-alternatives Requires(postun):update-alternatives
@ -44,7 +52,7 @@ Fri Sep 16 19:30:44 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
If not defined, the configuration continues to be locked for in file log.ini of the current working directory. If not defined, the configuration continues to be locked for in file log.ini of the current working directory.
Remember the logging configuration file in envvar ZOPE_TESTRUNNER_LOG_INI to allow spawned child processes to Remember the logging configuration file in envvar ZOPE_TESTRUNNER_LOG_INI to allow spawned child processes to
recreate the logging configuration. For details, see #134. recreate the logging configuration. For details, see #134.
- version update to 5.4.0 - version update to 5.4.0
* Improve --help documentation for --package-path option (#121). * Improve --help documentation for --package-path option (#121).
* Do not disable existing loggers during logsupport initialization (#120). * Do not disable existing loggers during logsupport initialization (#120).
@ -84,23 +92,23 @@ Wed Oct 30 12:13:54 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
Mon Apr 8 13:02:40 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com> Mon Apr 8 13:02:40 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
- update to version 5.0 - update to version 5.0
* Fix test failures and deprecation warnings occurring when * Fix test failures and deprecation warnings occurring when
using Python 3.8a1. using Python 3.8a1.
* Drop support for Python 3.4. * Drop support for Python 3.4.
4.9* 4.9*
* Fix AssertionError in _DummyThread.isAlive on Python 3. * Fix AssertionError in _DummyThread.isAlive on Python 3.
* Drop support for Python 3.3. * Drop support for Python 3.3.
* Add support for Python 3.7. * Add support for Python 3.7.
* Remove untested support for the --pychecker option. * Remove untested support for the --pychecker option.
* Update the command line interface to use argparse instead of * Update the command line interface to use argparse instead of
optparse. optparse.
* Use ipdb instead of pdb for post-mortem debugging if available. * Use ipdb instead of pdb for post-mortem debugging if available.
* Add a require-unique option to check for duplicate test IDs. * Add a require-unique option to check for duplicate test IDs.
* Reintroduce optional support for subunit. * Reintroduce optional support for subunit.
* Handle string in exception values when formatting chained * Handle string in exception values when formatting chained
exceptions. exceptions.
4.8* 4.8*
* Enable DeprecationWarning earlier, when discovering test * Enable DeprecationWarning earlier, when discovering test
modules. modules.
* Automatically enable DeprecationWarning when running tests. * Automatically enable DeprecationWarning when running tests.
- Launch tests using multibuild. - Launch tests using multibuild.
@ -206,7 +214,7 @@ Wed Nov 13 13:08:41 UTC 2013 - p.drouand@gmail.com
+ Fix nondeterministic test failures on Python 3.3 + Fix nondeterministic test failures on Python 3.3
+ Tear down layers after post_mortem debugging is finished. + Tear down layers after post_mortem debugging is finished.
+ Fix tests that write to source directory, it might be read-only. + Fix tests that write to source directory, it might be read-only.
- Changes from 4.4.0 - Changes from 4.4.0
+ Fix tests selection when the negative "!" pattern is used several times + Fix tests selection when the negative "!" pattern is used several times
(LP #1160965) (LP #1160965)
+ Moved tests into a 'tests' subpackage. + Moved tests into a 'tests' subpackage.

View File

@ -26,7 +26,7 @@
%endif %endif
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: python-zope.testrunner Name: python-zope.testrunner
Version: 6.0 Version: 6.2
Release: 0 Release: 0
Summary: Zope testrunner script Summary: Zope testrunner script
License: ZPL-2.1 License: ZPL-2.1

BIN
zope.testrunner-6.0.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0f8dc92e1363837567a02c78f252b6fd43c3b69c08ff2db748333aefd111bccd
size 150192