commit python-parameterized for openSUSE:Factory

2020-10-29 Thread root
Hello community,

here is the log from the commit of package python-parameterized for 
openSUSE:Factory checked in at 2020-10-29 09:45:04

Comparing /work/SRC/openSUSE:Factory/python-parameterized (Old)
 and  /work/SRC/openSUSE:Factory/.python-parameterized.new.3463 (New)


Package is "python-parameterized"

Thu Oct 29 09:45:04 2020 rev:9 rq:834328 version:0.7.4

Changes:

--- 
/work/SRC/openSUSE:Factory/python-parameterized/python-parameterized.changes
2020-08-15 21:14:57.323438325 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-parameterized.new.3463/python-parameterized.changes
  2020-10-29 09:45:06.111987008 +0100
@@ -1,0 +2,7 @@
+Mon Sep 14 15:10:37 UTC 2020 - Matej Cepl 
+
+- Add remove_nose.patch to eliminate nose dependency. The patch
+  is not very good, it still skips plenty of yield tests (which
+  were ignored even before, so it is not even a regression).
+
+---

New:

  remove_nose.patch



Other differences:
--
++ python-parameterized.spec ++
--- /var/tmp/diff_new_pack.J3EY7A/_old  2020-10-29 09:45:08.087988875 +0100
+++ /var/tmp/diff_new_pack.J3EY7A/_new  2020-10-29 09:45:08.091988879 +0100
@@ -27,14 +27,15 @@
 # PATCH-FIX-UPSTREAM skip_Documentation_tests.patch 
gh#wolever/parameterized#84 mc...@suse.com
 # Skip tests failing with Python 3.8
 Patch0: skip_Documentation_tests.patch
+# PATCH-FIX-UPSTREAM remove_nose.patch mc...@suse.com
+# Remove nose dependency (patch is not very good, DO NOT SEND UPSTREAM!)
+Patch1: remove_nose.patch
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module nose2}
-BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Suggests:   python-nose
 Suggests:   python-nose2
 BuildArch:  noarch
 %python_subpackages
@@ -55,8 +56,7 @@
 
 %check
 export LANG=en_US.UTF8
-%{python_expand nosetests-%$python_version}
-%{python_expand nose2-%$python_version}
+%{python_expand nose2-%$python_version -v -B --pretty-assert}
 %python_exec -m unittest parameterized.test
 %pytest parameterized/test.py
 

++ remove_nose.patch ++
---
 parameterized/parameterized.py |7 ---
 parameterized/test.py  |   30 --
 2 files changed, 20 insertions(+), 17 deletions(-)

--- a/parameterized/test.py
+++ b/parameterized/test.py
@@ -4,7 +4,7 @@ import inspect
 import mock
 import sys
 from unittest import TestCase, skipIf
-from nose.tools import assert_equal, assert_raises
+import pytest
 
 from .parameterized import (
 PY3, PY2, parameterized, param, parameterized_argument_value_pairs,
@@ -88,12 +88,12 @@ if not PYTEST:
 self.actual_order = self.stack.pop(0)
 
 def tearDown(self):
-missing_tests.remove("teardown_called(%s)" %(self.stack.pop(0), ))
+missing_tests.remove("teardown_called(%s)" % (self.stack.pop(0), ))
 
 @parameterized([(1, ), (2, )])
 def test_setup(self, count, *a):
-assert_equal(self.actual_order, "setup %s" %(count, ))
-missing_tests.remove("test_setup(%s)" %(self.actual_order, ))
+assert self.actual_order == "setup %s" % count
+missing_tests.remove("test_setup(%s)" % self.actual_order)
 
 
 def custom_naming_func(custom_tag):
@@ -236,9 +236,9 @@ class TestParamerizedOnTestCase(TestCase
 frame_locals = frame[0].f_locals
 nose_test_method_name = frame_locals['a'][0]._testMethodName
 expected_name = "test_on_TestCase2_custom_name_" + str(foo)
-assert_equal(nose_test_method_name, expected_name,
- "Test Method name '%s' did not get customized to 
expected: '%s'" %
- (nose_test_method_name, expected_name))
+assert nose_test_method_name == expected_name, \
+ "Test Method name '%s' did not get customized to 
expected: '%s'" % \
+ (nose_test_method_name, expected_name)
 missing_tests.remove("%s(%r, bar=%r)" %(expected_name, foo, bar))
 
 
@@ -261,7 +261,7 @@ class TestParameterizedExpandDocstring(T
 actual_docstring = test_method.__doc__
 if rstrip:
 actual_docstring = actual_docstring.rstrip()
-assert_equal(actual_docstring, expected_docstring)
+assert actual_docstring == expected_docstring
 
 @parameterized.expand([param("foo")],
   doc_func=lambda f, n, p: "stuff")
@@ -337,7 +337,7 @@ def test_helpful_error_on_empty_iterable
 
 def test_skip_test_on_empty_iterable():
 func = parameterized([], skip_on_empty=True)(lambda: None)
-

commit python-parameterized for openSUSE:Factory

2020-08-15 Thread root
Hello community,

here is the log from the commit of package python-parameterized for 
openSUSE:Factory checked in at 2020-08-15 21:14:18

Comparing /work/SRC/openSUSE:Factory/python-parameterized (Old)
 and  /work/SRC/openSUSE:Factory/.python-parameterized.new.3399 (New)


Package is "python-parameterized"

Sat Aug 15 21:14:18 2020 rev:8 rq:826613 version:0.7.4

Changes:

--- 
/work/SRC/openSUSE:Factory/python-parameterized/python-parameterized.changes
2020-06-05 20:00:28.731992702 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-parameterized.new.3399/python-parameterized.changes
  2020-08-15 21:14:57.323438325 +0200
@@ -1,0 +2,5 @@
+Fri Aug 14 03:29:41 UTC 2020 - John Vandenberg 
+
+- Re-activate testing with pytest runner
+
+---



Other differences:
--
++ python-parameterized.spec ++
--- /var/tmp/diff_new_pack.Ml8YPS/_old  2020-08-15 21:15:02.495441220 +0200
+++ /var/tmp/diff_new_pack.Ml8YPS/_new  2020-08-15 21:15:02.499441222 +0200
@@ -30,6 +30,7 @@
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module nose2}
 BuildRequires:  %{python_module nose}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -41,8 +42,6 @@
 %description
 Parameterized testing with any Python test framework.
 
-Not working with supportest "pytest" versions
-
 %prep
 %setup -q -n parameterized-%{version}
 %autopatch -p1
@@ -59,6 +58,7 @@
 %{python_expand nosetests-%$python_version}
 %{python_expand nose2-%$python_version}
 %python_exec -m unittest parameterized.test
+%pytest parameterized/test.py
 
 %files %{python_files}
 %doc CHANGELOG.txt README.rst




commit python-parameterized for openSUSE:Factory

2020-06-05 Thread root
Hello community,

here is the log from the commit of package python-parameterized for 
openSUSE:Factory checked in at 2020-06-05 20:00:19

Comparing /work/SRC/openSUSE:Factory/python-parameterized (Old)
 and  /work/SRC/openSUSE:Factory/.python-parameterized.new.3606 (New)


Package is "python-parameterized"

Fri Jun  5 20:00:19 2020 rev:7 rq:811024 version:0.7.4

Changes:

--- 
/work/SRC/openSUSE:Factory/python-parameterized/python-parameterized.changes
2019-12-11 12:11:00.036592066 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-parameterized.new.3606/python-parameterized.changes
  2020-06-05 20:00:28.731992702 +0200
@@ -1,0 +2,20 @@
+Tue Jun  2 14:26:24 UTC 2020 - pgaj...@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
+
+---

Old:

  parameterized-0.7.1.tar.gz

New:

  parameterized-0.7.4.tar.gz



Other differences:
--
++ python-parameterized.spec ++
--- /var/tmp/diff_new_pack.XqZum8/_old  2020-06-05 20:00:30.795999472 +0200
+++ /var/tmp/diff_new_pack.XqZum8/_new  2020-06-05 20:00:30.79485 +0200
@@ -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 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 @@
 
 %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}

++ parameterized-0.7.1.tar.gz -> parameterized-0.7.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parameterized-0.7.1/.travis.yml 
new/parameterized-0.7.4/.travis.yml
--- old/parameterized-0.7.1/.travis.yml 2019-11-19 22:04:40.0 +0100
+++ new/parameterized-0.7.4/.travis.yml 2020-04-12 23:07:48.0 +0200
@@ -1,71 +0,0 @@
-# !!! WARNING !!!
-# This file is automatically generated by ./rebuild-travis-yaml
-# !!! WARNING !!!
-language: python
-sudo: false
-matrix:
-  include:
-- env: "TOXENV=py27-nose"
-  python: "2.7"
-- env: "TOXENV=py27-nose2"
-  python: "2.7"
-- env: "TOXENV=py27-pytest2"
-  python: "2.7"
-- env: "TOXENV=py27-pytest3"
-  python: "2.7"
-- env: "TOXENV=py27-unit"
-  python: "2.7"
-- env: "TOXENV=py27-unit2"
-  python: "2.7"
-- env: "TOXENV=py35-nose"
-  python: "3.5"
-- env: "TOXENV=py35-nose2"
-  python: "3.5"
-- env: "TOXENV=py35-pytest2"
-  python: "3.5"
-- env: "TOXENV=py35-pytest3"
-  python: "3.5"
-- env: "TOXENV=py35-unit"
-  python: "3.5"
-- env: "TOXENV=py35-unit2"
-  python: "3.5"
-- env: "TOXENV=py36-nose"
-  python: "3.6"
-- env: "TOXENV=py36-nose2"
-  python: "3.6"
-- env: "TOXENV=py36-pytest2"
-  python: "3.6"
-- env: "TOXENV=py36-pytest3"
-  python: "3.6"
-- env: "TOXENV=py36-unit"
-  python: "3.6"
-- env: "TOXENV=py36-unit2"
-  python: "3.6"
-- env: "TOXENV=pypy-nose"
- 

commit python-parameterized for openSUSE:Factory

2019-12-11 Thread root
Hello community,

here is the log from the commit of package python-parameterized for 
openSUSE:Factory checked in at 2019-12-11 12:09:42

Comparing /work/SRC/openSUSE:Factory/python-parameterized (Old)
 and  /work/SRC/openSUSE:Factory/.python-parameterized.new.4691 (New)


Package is "python-parameterized"

Wed Dec 11 12:09:42 2019 rev:6 rq:754448 version:0.7.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-parameterized/python-parameterized.changes
2019-11-22 10:19:24.089361309 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-parameterized.new.4691/python-parameterized.changes
  2019-12-11 12:11:00.036592066 +0100
@@ -1,0 +2,8 @@
+Thu Dec  5 15:52:40 CET 2019 - Matej Cepl 
+
+- Update to 0.7.1:
+  - calling `setUp` and `tearDown` in parameterized classesq
+- Add skip_Documentation_tests.patch to skip over test cases,
+  failing with Python 3.8. gh#wolever/parameterized#84
+
+---

Old:

  parameterized-0.7.0.tar.gz

New:

  parameterized-0.7.1.tar.gz
  skip_Documentation_tests.patch



Other differences:
--
++ python-parameterized.spec ++
--- /var/tmp/diff_new_pack.Sex3FU/_old  2019-12-11 12:11:06.692589267 +0100
+++ /var/tmp/diff_new_pack.Sex3FU/_new  2019-12-11 12:11:06.692589267 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-parameterized
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,24 +18,26 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-parameterized
-Version:0.7.0
+Version:0.7.1
 Release:0
 Summary:Parameterized testing
 License:BSD-2-Clause
-Url:https://github.com/wolever/parameterized
+URL:https://github.com/wolever/parameterized
 Source: 
https://files.pythonhosted.org/packages/source/p/parameterized/parameterized-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM skip_Documentation_tests.patch 
gh#wolever/parameterized#84 mc...@suse.com
+# Skip tests failing with Python 3.8
+Patch0: skip_Documentation_tests.patch
 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
-BuildRequires:  fdupes
-BuildRequires:  python-rpm-macros
 BuildArch:  noarch
-
 %python_subpackages
 
 %description
@@ -45,6 +47,7 @@
 
 %prep
 %setup -q -n parameterized-%{version}
+%autopatch -p1
 
 %build
 %python_build
@@ -55,6 +58,7 @@
 
 %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}

++ parameterized-0.7.0.tar.gz -> parameterized-0.7.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parameterized-0.7.0/.travis.yml 
new/parameterized-0.7.1/.travis.yml
--- old/parameterized-0.7.0/.travis.yml 2018-12-31 06:10:25.0 +0100
+++ new/parameterized-0.7.1/.travis.yml 2019-11-19 22:04:40.0 +0100
@@ -1,3 +1,6 @@
+# !!! WARNING !!!
+# This file is automatically generated by ./rebuild-travis-yaml
+# !!! WARNING !!!
 language: python
 sudo: false
 matrix:
@@ -6,7 +9,9 @@
   python: "2.7"
 - env: "TOXENV=py27-nose2"
   python: "2.7"
-- env: "TOXENV=py27-pytest"
+- env: "TOXENV=py27-pytest2"
+  python: "2.7"
+- env: "TOXENV=py27-pytest3"
   python: "2.7"
 - env: "TOXENV=py27-unit"
   python: "2.7"
@@ -16,7 +21,9 @@
   python: "3.5"
 - env: "TOXENV=py35-nose2"
   python: "3.5"
-- env: "TOXENV=py35-pytest"
+- env: "TOXENV=py35-pytest2"
+  python: "3.5"
+- env: "TOXENV=py35-pytest3"
   python: "3.5"
 - env: "TOXENV=py35-unit"
   python: "3.5"
@@ -26,7 +33,9 @@
   python: "3.6"
 - env: "TOXENV=py36-nose2"
   python: "3.6"
-- env: "TOXENV=py36-pytest"
+- env: "TOXENV=py36-pytest2"
+  python: "3.6"
+- env: "TOXENV=py36-pytest3"
   python: "3.6"
 - env: "TOXENV=py36-unit"
   python: "3.6"
@@ -36,11 +45,27 @@
   python: "pypy"
 - env: "TOXENV=pypy-nose2"
   python: "pypy"
-- env: "TOXENV=pypy-pytest"
+- env: "TOXENV=pypy-pytest2"
+  python: "pypy"
+- env: "TOXENV=pypy-pytest3"
   python: "pypy"
 - env: 

commit python-parameterized for openSUSE:Factory

2019-11-22 Thread root
Hello community,

here is the log from the commit of package python-parameterized for 
openSUSE:Factory checked in at 2019-11-22 10:19:21

Comparing /work/SRC/openSUSE:Factory/python-parameterized (Old)
 and  /work/SRC/openSUSE:Factory/.python-parameterized.new.26869 (New)


Package is "python-parameterized"

Fri Nov 22 10:19:21 2019 rev:5 rq:745383 version:0.7.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-parameterized/python-parameterized.changes
2019-08-22 10:56:00.669670586 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-parameterized.new.26869/python-parameterized.changes
 2019-11-22 10:19:24.089361309 +0100
@@ -1,0 +2,5 @@
+Tue Nov  5 09:31:02 UTC 2019 - Ondřej Súkup 
+
+- remove pytest test, enable other test frameworks 
+
+---



Other differences:
--
++ python-parameterized.spec ++
--- /var/tmp/diff_new_pack.rIYtTR/_old  2019-11-22 10:19:24.501361202 +0100
+++ /var/tmp/diff_new_pack.rIYtTR/_new  2019-11-22 10:19:24.501361202 +0100
@@ -22,13 +22,16 @@
 Release:0
 Summary:Parameterized testing
 License:BSD-2-Clause
-Group:  Development/Languages/Python
 Url:https://github.com/wolever/parameterized
 Source: 
https://files.pythonhosted.org/packages/source/p/parameterized/parameterized-%{version}.tar.gz
 BuildRequires:  %{python_module mock}
+BuildRequires:  %{python_module nose2}
 BuildRequires:  %{python_module nose}
-BuildRequires:  %{python_module pytest < 4}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module unittest2}
+Suggests:   python-nose
+Suggests:   python-nose2
+Suggests:   python-unittest2
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 BuildArch:  noarch
@@ -38,6 +41,8 @@
 %description
 Parameterized testing with any Python test framework.
 
+Not working with supportest "pytest" versions
+
 %prep
 %setup -q -n parameterized-%{version}
 
@@ -50,7 +55,10 @@
 
 %check
 export LANG=en_US.UTF8
-%pytest parameterized/test.py
+%{python_expand nosetests-%$python_version}
+%{python_expand nose2-%$python_version}
+%{python_expand unit2-%$python_version}
+%python_exec -m unittest parameterized.test
 
 %files %{python_files}
 %doc CHANGELOG.txt README.rst




commit python-parameterized for openSUSE:Factory

2019-08-22 Thread root
Hello community,

here is the log from the commit of package python-parameterized for 
openSUSE:Factory checked in at 2019-08-22 10:55:59

Comparing /work/SRC/openSUSE:Factory/python-parameterized (Old)
 and  /work/SRC/openSUSE:Factory/.python-parameterized.new.22127 (New)


Package is "python-parameterized"

Thu Aug 22 10:55:59 2019 rev:4 rq:725098 version:0.7.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-parameterized/python-parameterized.changes
2019-03-22 15:03:39.321687220 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-parameterized.new.22127/python-parameterized.changes
 2019-08-22 10:56:00.669670586 +0200
@@ -1,0 +2,5 @@
+Wed Aug 21 14:41:30 UTC 2019 - Tomáš Chvátal 
+
+- Use pytest 3.x series as newer use different syntax
+
+---



Other differences:
--
++ python-parameterized.spec ++
--- /var/tmp/diff_new_pack.UEMHrz/_old  2019-08-22 10:56:01.121670526 +0200
+++ /var/tmp/diff_new_pack.UEMHrz/_new  2019-08-22 10:56:01.125670525 +0200
@@ -27,7 +27,7 @@
 Source: 
https://files.pythonhosted.org/packages/source/p/parameterized/parameterized-%{version}.tar.gz
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module nose}
-BuildRequires:  %{python_module pytest}
+BuildRequires:  %{python_module pytest < 4}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros




commit python-parameterized for openSUSE:Factory

2019-03-22 Thread root
Hello community,

here is the log from the commit of package python-parameterized for 
openSUSE:Factory checked in at 2019-03-22 15:03:37

Comparing /work/SRC/openSUSE:Factory/python-parameterized (Old)
 and  /work/SRC/openSUSE:Factory/.python-parameterized.new.25356 (New)


Package is "python-parameterized"

Fri Mar 22 15:03:37 2019 rev:3 rq:685370 version:0.7.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-parameterized/python-parameterized.changes
2018-12-24 11:40:46.401485052 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-parameterized.new.25356/python-parameterized.changes
 2019-03-22 15:03:39.321687220 +0100
@@ -1,0 +2,14 @@
+Fri Mar 15 13:34:56 UTC 2019 - Tomáš Chvátal 
+
+- Update to 0.7.0:
+  * Added parameterized_class feature, for parameterizing entire test
+classes (many thanks to @TobyLL for their suggestions and help testing!)
+  * Fix DeprecationWarning on `inspect.getargs` (thanks @brettdh;
+https://github.com/wolever/parameterized/issues/67)
+  * Make sure that `setUp` and `tearDown` methods work correctly (#40)
+  * Raise a ValueError when input is empty (thanks @danielbradburn;
+https://github.com/wolever/parameterized/pull/48)
+  * Fix the order when number of cases exceeds 10 (thanks @ntflc;
+https://github.com/wolever/parameterized/pull/49)
+
+---

Old:

  parameterized-0.6.1.tar.gz

New:

  parameterized-0.7.0.tar.gz



Other differences:
--
++ python-parameterized.spec ++
--- /var/tmp/diff_new_pack.loU4qT/_old  2019-03-22 15:03:42.113684805 +0100
+++ /var/tmp/diff_new_pack.loU4qT/_new  2019-03-22 15:03:42.137684784 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-parameterized
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,22 +17,20 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
-%bcond_without test
 Name:   python-parameterized
-Version:0.6.1
+Version:0.7.0
 Release:0
 Summary:Parameterized testing
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Url:https://github.com/wolever/parameterized
 Source: 
https://files.pythonhosted.org/packages/source/p/parameterized/parameterized-%{version}.tar.gz
+BuildRequires:  %{python_module mock}
+BuildRequires:  %{python_module nose}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-%if %{with test}
-BuildRequires:  %{python_module nose}
-BuildRequires:  %{python_module pytest}
-%endif
 BuildArch:  noarch
 
 %python_subpackages
@@ -50,14 +48,11 @@
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
-%if %{with test}
 %check
-%python_expand py.test-%{$python_bin_suffix} parameterized/test.py
-%python_expand nosetests-%{$python_bin_suffix}
-%endif
+export LANG=en_US.UTF8
+%pytest parameterized/test.py
 
 %files %{python_files}
-%defattr(-,root,root,-)
 %doc CHANGELOG.txt README.rst
 %license LICENSE.txt
 %{python_sitelib}/*

++ parameterized-0.6.1.tar.gz -> parameterized-0.7.0.tar.gz ++
 1901 lines of diff (skipped)




commit python-parameterized for openSUSE:Factory

2018-12-24 Thread root
Hello community,

here is the log from the commit of package python-parameterized for 
openSUSE:Factory checked in at 2018-12-24 11:40:45

Comparing /work/SRC/openSUSE:Factory/python-parameterized (Old)
 and  /work/SRC/openSUSE:Factory/.python-parameterized.new.28833 (New)


Package is "python-parameterized"

Mon Dec 24 11:40:45 2018 rev:2 rq:659532 version:0.6.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-parameterized/python-parameterized.changes
2018-05-29 10:28:45.716288876 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-parameterized.new.28833/python-parameterized.changes
 2018-12-24 11:40:46.401485052 +0100
@@ -1,0 +2,5 @@
+Tue Dec  4 12:51:07 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---



Other differences:
--
++ python-parameterized.spec ++
--- /var/tmp/diff_new_pack.4L9g4P/_old  2018-12-24 11:40:46.781484715 +0100
+++ /var/tmp/diff_new_pack.4L9g4P/_new  2018-12-24 11:40:46.781484715 +0100
@@ -12,7 +12,8 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
+#
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
@@ -20,12 +21,11 @@
 Name:   python-parameterized
 Version:0.6.1
 Release:0
-License:BSD-2-Clause
 Summary:Parameterized testing
-Url:https://github.com/wolever/parameterized
+License:BSD-2-Clause
 Group:  Development/Languages/Python
+Url:https://github.com/wolever/parameterized
 Source: 
https://files.pythonhosted.org/packages/source/p/parameterized/parameterized-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros




commit python-parameterized for openSUSE:Factory

2018-05-29 Thread root
Hello community,

here is the log from the commit of package python-parameterized for 
openSUSE:Factory checked in at 2018-05-29 10:28:45

Comparing /work/SRC/openSUSE:Factory/python-parameterized (Old)
 and  /work/SRC/openSUSE:Factory/.python-parameterized.new (New)


Package is "python-parameterized"

Tue May 29 10:28:45 2018 rev:1 rq:609894 version:0.6.1

Changes:

New Changes file:

--- /dev/null   2018-05-24 09:31:19.417470950 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-parameterized.new/python-parameterized.changes
   2018-05-29 10:28:45.716288876 +0200
@@ -0,0 +1,9 @@
+---
+Wed May 16 15:50:46 UTC 2018 - toddrme2...@gmail.com
+
+- Use license tag
+
+---
+Sun Oct 22 18:06:35 UTC 2017 - toddrme2...@gmail.com
+
+- Initial version

New:

  parameterized-0.6.1.tar.gz
  python-parameterized.changes
  python-parameterized.spec



Other differences:
--
++ python-parameterized.spec ++
#
# spec file for package python-parameterized
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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.

# Please submit bugfixes or comments via http://bugs.opensuse.org/


%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without test
Name:   python-parameterized
Version:0.6.1
Release:0
License:BSD-2-Clause
Summary:Parameterized testing
Url:https://github.com/wolever/parameterized
Group:  Development/Languages/Python
Source: 
https://files.pythonhosted.org/packages/source/p/parameterized/parameterized-%{version}.tar.gz
BuildRequires:  %{python_module devel}
BuildRequires:  %{python_module setuptools}
BuildRequires:  fdupes
BuildRequires:  python-rpm-macros
%if %{with test}
BuildRequires:  %{python_module nose}
BuildRequires:  %{python_module pytest}
%endif
BuildArch:  noarch

%python_subpackages

%description
Parameterized testing with any Python test framework.

%prep
%setup -q -n parameterized-%{version}

%build
%python_build

%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}

%if %{with test}
%check
%python_expand py.test-%{$python_bin_suffix} parameterized/test.py
%python_expand nosetests-%{$python_bin_suffix}
%endif

%files %{python_files}
%defattr(-,root,root,-)
%doc CHANGELOG.txt README.rst
%license LICENSE.txt
%{python_sitelib}/*

%changelog