forked from pool/python-zope.testrunner
Compare commits
13 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| aa89e8f8a8 | |||
| 7fbd5761fd | |||
| 514a917e15 | |||
| cd4be871eb | |||
| 73a4c97eac | |||
| 6e9d46871d | |||
| 904e5ddb00 | |||
| ab905fd144 | |||
| d543a12cf2 | |||
| dc907ff2d0 | |||
| 376434d4e3 | |||
| 4eb02b6a43 | |||
| bc3d402a0b |
@@ -1,3 +1,58 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 6 02:46:39 UTC 2026 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 8.1:
|
||||
* Remove run-time dependency on setuptools.
|
||||
* Replace pkg_resources namespace with PEP 420 native namespace.
|
||||
* Add --auto-path option. This automatically adds the path of all packages
|
||||
from the --package option to the test paths. (#198)
|
||||
* Improve @unittest.expectedFailure support, especially regarding
|
||||
post-mortem debugger. (#196)
|
||||
* Re-add a single import of pkg_resources to avoid other import issues in
|
||||
mixed pip/buildout environments. (#194)
|
||||
* Replace pkg_resources with importlib.metadata.
|
||||
* Remove setup.py ftest command. (#178)
|
||||
* Remove zope.testrunner.eggsupport. It is no longer usable as of
|
||||
setuptools 72.0.0. (#185)
|
||||
* Drop support for Python 3.8.
|
||||
* Add option --only-level=level to run tests only at the specified
|
||||
level. (#188)
|
||||
- Clean up BuildRequires.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 26 09:52:11 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Convert to libalternatives on SLE-16-based and newer systems
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 1 16:06:08 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Make it compatible with older setuptools
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 27 00:40:11 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Normalize metadata directory name.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 20 10:40:28 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 6.6.1
|
||||
* Make signatures in ``tb_format`` Python 3.12+ compatible (#186)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 28 21:53:13 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 6.6:
|
||||
* Make tests compatible with Python 3.13 + add support for that
|
||||
version.
|
||||
* Drop support for Python 3.7.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 4 04:40:08 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Add missing psuffix to name for multibuild.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 21 04:04:14 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-zope.testrunner
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2026 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -24,27 +24,35 @@
|
||||
%define psuffix %{nil}
|
||||
%bcond_with test
|
||||
%endif
|
||||
%if 0%{?suse_version} > 1500
|
||||
%bcond_without libalternatives
|
||||
%else
|
||||
%bcond_with libalternatives
|
||||
%endif
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-zope.testrunner
|
||||
Version: 6.5
|
||||
Name: python-zope.testrunner%{psuffix}
|
||||
Version: 8.1
|
||||
Release: 0
|
||||
Summary: Zope testrunner script
|
||||
License: ZPL-2.1
|
||||
URL: https://github.com/zopefoundation/zope.testrunner
|
||||
Source: https://files.pythonhosted.org/packages/source/z/zope.testrunner/zope.testrunner-%{version}.tar.gz
|
||||
Source: https://files.pythonhosted.org/packages/source/z/zope_testrunner/zope_testrunner-%{version}.tar.gz
|
||||
BuildRequires: %{python_module base >= 3.9}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: %{python_module zope.exceptions}
|
||||
BuildRequires: %{python_module zope.interface}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-setuptools
|
||||
Requires: python-zope.exceptions
|
||||
Requires: python-zope.interface
|
||||
BuildArch: noarch
|
||||
%if %{with libalternatives}
|
||||
BuildRequires: alts
|
||||
Requires: alts
|
||||
%else
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
BuildArch: noarch
|
||||
%endif
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module zope.testing}
|
||||
BuildRequires: %{python_module zope.testrunner = %{version}}
|
||||
@@ -56,7 +64,7 @@ BuildRequires: %{pythons}
|
||||
This package provides a flexible test runner with layer support.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n zope.testrunner-%{version}
|
||||
%autosetup -p1 -n zope_testrunner-%{version}
|
||||
find -size 0 -delete
|
||||
|
||||
%build
|
||||
@@ -84,13 +92,16 @@ $python -m zope.testrunner --test-path=src -vv
|
||||
%postun
|
||||
%python_uninstall_alternative zope-testrunner
|
||||
|
||||
%pre
|
||||
%python_libalternatives_reset_alternative zope-testrunner
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE.md
|
||||
%doc README.rst
|
||||
%python_alternative %{_bindir}/zope-testrunner
|
||||
%dir %{python_sitelib}/zope
|
||||
%{python_sitelib}/zope/testrunner
|
||||
%{python_sitelib}/zope.testrunner-%{version}-py*-nspkg.pth
|
||||
%{python_sitelib}/zope.testrunner-%{version}.dist-info
|
||||
%{python_sitelib}/zope[_.]testrunner-%{version}.dist-info
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d1ff88aa8dab42a2f0de2f522719f675e8977a4b82ece6526ae742e1fdabdbdc
|
||||
size 155717
|
||||
3
zope_testrunner-8.1.tar.gz
Normal file
3
zope_testrunner-8.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65389bb17634291cab3590bb9addc6ff010e6907440e772a04dcb2b8029acfde
|
||||
size 155129
|
||||
Reference in New Issue
Block a user