1
0

Accepting request 970998 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/970998
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-transaction?expand=0&rev=26
This commit is contained in:
Dominique Leuenberger 2022-04-22 19:53:02 +00:00 committed by Git OBS Bridge
commit 345d7465f3
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Apr 20 07:35:20 UTC 2022 - pgajdos@suse.com
- do not require python-mock for build
-------------------------------------------------------------------
Wed Jan 13 14:19:23 UTC 2021 - pgajdos@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package python-transaction
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -24,15 +24,14 @@ Summary: Transaction management for Python
License: ZPL-2.1
URL: https://github.com/zopefoundation/transaction
Source: https://files.pythonhosted.org/packages/source/t/transaction/transaction-%{version}.tar.gz
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module zope.interface}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-zope.interface
BuildArch: noarch
# SECTION Test requirements
BuildRequires: %{python_module mock}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module zope.interface}
# /SECTION
%python_subpackages
@ -58,6 +57,8 @@ rm -rf transaction.egg-info
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# https://github.com/zopefoundation/zdaemon/issues/28#issuecomment-1102754818
sed -i 's:import mock:from unittest import mock:' src/transaction/tests/test__manager.py
%pytest
%files %{python_files}