2018-05-16 19:36:46 +02:00
|
|
|
#
|
|
|
|
# spec file for package python-parameterized
|
|
|
|
#
|
2022-04-07 16:59:10 +02:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2018-05-16 19:36:46 +02:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2018-12-04 14:44:32 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
|
|
#
|
2018-05-16 19:36:46 +02:00
|
|
|
|
|
|
|
|
2022-08-20 23:28:47 +02:00
|
|
|
%bcond_with ringdisabled
|
|
|
|
%if %{with ringdisabled}
|
|
|
|
# nose2 is actively maintained, but not used much in the distribution. No need to test it in ring1
|
|
|
|
%bcond_with nose2
|
|
|
|
%else
|
|
|
|
%bcond_without nose2
|
|
|
|
%endif
|
|
|
|
|
2018-05-16 19:36:46 +02:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
|
|
Name: python-parameterized
|
2022-04-07 16:59:10 +02:00
|
|
|
Version: 0.8.1
|
2018-05-16 19:36:46 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: Parameterized testing
|
2018-12-04 14:44:32 +01:00
|
|
|
License: BSD-2-Clause
|
2019-12-05 16:15:14 +01:00
|
|
|
URL: https://github.com/wolever/parameterized
|
2018-05-16 19:36:46 +02:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/p/parameterized/parameterized-%{version}.tar.gz
|
2022-04-15 06:28:25 +02:00
|
|
|
# PATCH-FIX-UPSTREAM parameterized-pr116-pytest4.patch -- gh#wolever/parameterized#116, fix pytest >= 4 execution
|
|
|
|
Patch0: parameterized-pr116-pytest4.patch
|
|
|
|
# PATCH-FIX-OPENSUSE remove_nose.patch mcepl@suse.com
|
2020-09-14 17:12:33 +02:00
|
|
|
# Remove nose dependency (patch is not very good, DO NOT SEND UPSTREAM!)
|
|
|
|
Patch1: remove_nose.patch
|
2020-08-14 08:52:17 +02:00
|
|
|
BuildRequires: %{python_module pytest}
|
2018-05-16 19:36:46 +02:00
|
|
|
BuildRequires: %{python_module setuptools}
|
2022-08-20 23:28:47 +02:00
|
|
|
%if %{with nose2}
|
|
|
|
BuildRequires: %{python_module nose2}
|
|
|
|
%endif
|
2019-12-05 16:15:14 +01:00
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
2018-05-16 19:36:46 +02:00
|
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%description
|
|
|
|
Parameterized testing with any Python test framework.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n parameterized-%{version}
|
2019-12-05 16:15:14 +01:00
|
|
|
%autopatch -p1
|
2018-05-16 19:36:46 +02:00
|
|
|
|
|
|
|
%build
|
|
|
|
%python_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%python_install
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
|
|
|
|
%check
|
2022-04-07 16:59:10 +02:00
|
|
|
# https://github.com/wolever/parameterized/issues/122
|
|
|
|
sed -i 's:import mock:from unittest import mock:' parameterized/test.py
|
2019-03-15 14:41:10 +01:00
|
|
|
export LANG=en_US.UTF8
|
2022-08-20 23:28:47 +02:00
|
|
|
%if %{with nose2}
|
2020-09-14 17:12:33 +02:00
|
|
|
%{python_expand nose2-%$python_version -v -B --pretty-assert}
|
2022-08-20 23:28:47 +02:00
|
|
|
%endif
|
2019-11-04 15:08:49 +01:00
|
|
|
%python_exec -m unittest parameterized.test
|
2022-04-07 16:59:10 +02:00
|
|
|
# https://github.com/wolever/parameterized/issues/122
|
|
|
|
%pytest parameterized/test.py -k 'not (test_with_docstring_1_v_l_ or test_with_docstring_0_value1)'
|
2018-05-16 19:36:46 +02:00
|
|
|
|
|
|
|
%files %{python_files}
|
|
|
|
%doc CHANGELOG.txt README.rst
|
|
|
|
%license LICENSE.txt
|
2022-08-20 23:28:47 +02:00
|
|
|
%{python_sitelib}/parameterized
|
|
|
|
%{python_sitelib}/parameterized-%{version}*-info
|
2018-05-16 19:36:46 +02:00
|
|
|
|
|
|
|
%changelog
|