Accepting request 811024 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/811024 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-parameterized?expand=0&rev=7
This commit is contained in:
commit
f95aa9541c
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6a94dbea30c6abde99fd4c2f2042c1bf7f980e48908bf92ead62394f93cf57ed
|
||||
size 22365
|
3
parameterized-0.7.4.tar.gz
Normal file
3
parameterized-0.7.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:190f8cc7230eee0b56b30d7f074fd4d165f7c45e6077582d0813c8557e738490
|
||||
size 23389
|
@ -1,3 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 2 14:26:24 UTC 2020 - pgajdos@suse.com
|
||||
|
||||
- version update to 0.7.4
|
||||
* Add ``class_name_func`` option to ``@parameterized_class``
|
||||
* Fix arguments being passed to skip_on_empty_helper (thanks @gaf3;
|
||||
https://github.com/wolever/parameterized/issues/57)
|
||||
* Fix tests on Python 3.8.2 (thanks @Ikke;
|
||||
https://github.com/wolever/parameterized/pull/99)
|
||||
* Fix some typos (thanks @LWprogramming, @jinnovation;
|
||||
https://github.com/wolever/parameterized/pull/77,
|
||||
https://github.com/wolever/parameterized/pull/80)
|
||||
* Fix unicode handling in setup.py (thanks @sliwinski-milosz;
|
||||
https://github.com/wolever/parameterized/pull/89)
|
||||
* Fix Python 3.9 compat (thanks @vstinner;
|
||||
https://github.com/wolever/parameterized/pull/94)
|
||||
* Add `@parameterized_class` name function callback support (thanks
|
||||
@duncwebb et al; https://github.com/wolever/parameterized/pull/74)
|
||||
- drop dependency on unittest2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 5 15:52:40 CET 2019 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-parameterized
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LLC
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-parameterized
|
||||
Version: 0.7.1
|
||||
Version: 0.7.4
|
||||
Release: 0
|
||||
Summary: Parameterized testing
|
||||
License: BSD-2-Clause
|
||||
@ -31,12 +31,10 @@ BuildRequires: %{python_module mock}
|
||||
BuildRequires: %{python_module nose2}
|
||||
BuildRequires: %{python_module nose}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module unittest2}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Suggests: python-nose
|
||||
Suggests: python-nose2
|
||||
Suggests: python-unittest2
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
@ -58,10 +56,8 @@ Not working with supportest "pytest" versions
|
||||
|
||||
%check
|
||||
export LANG=en_US.UTF8
|
||||
# gh#wolever/parameterized#84
|
||||
%{python_expand nosetests-%$python_version}
|
||||
%{python_expand nose2-%$python_version}
|
||||
%{python_expand unit2-%$python_version}
|
||||
%python_exec -m unittest parameterized.test
|
||||
|
||||
%files %{python_files}
|
||||
|
Loading…
Reference in New Issue
Block a user