Hello community,

here is the log from the commit of package python-flake8 for openSUSE:Factory 
checked in at 2015-08-21 07:38:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-flake8 (Old)
 and      /work/SRC/openSUSE:Factory/.python-flake8.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-flake8"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-flake8/python-flake8.changes      
2015-03-05 18:15:36.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python-flake8.new/python-flake8.changes 
2015-08-21 07:38:27.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Aug 10 08:45:26 UTC 2015 - [email protected]
+
+- Add upstream patch flake8-fix-tests-using-new-mock.patch
+  * Fix tests using mock 1.1.x and above
+
+-------------------------------------------------------------------

New:
----
  flake8-fix-tests-using-new-mock.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-flake8.spec ++++++
--- /var/tmp/diff_new_pack.E7G02E/_old  2015-08-21 07:38:28.000000000 +0200
+++ /var/tmp/diff_new_pack.E7G02E/_new  2015-08-21 07:38:28.000000000 +0200
@@ -24,6 +24,8 @@
 Group:          Development/Languages/Python
 Url:            http://bitbucket.org/tarek/flake8
 Source:         
http://pypi.python.org/packages/source/f/flake8/flake8-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM flake8-fix-tests-using-new-mock.patch -- [email protected]
+Patch1:         flake8-fix-tests-using-new-mock.patch
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 # Test requirements:
@@ -53,6 +55,7 @@
 
 %prep
 %setup -q -n flake8-%{version}
+%patch1 -p1
 
 %build
 python setup.py build

++++++ flake8-fix-tests-using-new-mock.patch ++++++
>From b0f30f97fbec04c1ab7cb8937f636822eab63885 Mon Sep 17 00:00:00 2001
From: Ian Cordasco <[email protected]>
Date: Fri, 10 Jul 2015 09:34:49 -0500
Subject: [PATCH] Fix flake8 tests using mock to work with 1.1.x branch

--- a/flake8/tests/test_engine.py
+++ b/flake8/tests/test_engine.py
@@ -51,7 +51,7 @@ class TestEngine(unittest.TestCase):
             self.assertTrue(len(registered_exts[0]) > 0)
             for i in registered_exts[1:]:
                 self.assertTrue(isinstance(i, list))
-            register_check.assert_called()
+            self.assertTrue(register_check.called)
 
     def test_get_parser(self):
         # setup
@@ -66,13 +66,13 @@ class TestEngine(unittest.TestCase):
         # actual call we're testing
         parser, hooks = engine.get_parser()
         # assertions
-        re.assert_called()
-        gpv.assert_called()
+        self.assertTrue(re.called)
+        self.assertTrue(gpv.called)
         pgp.assert_called_once_with(
             'flake8',
             '%s (pyflakes: 0.7, mccabe: 0.2) Python Version' % __version__)
-        m.remove_option.assert_called()
-        m.add_option.assert_called()
+        self.assertTrue(m.remove_option.called)
+        self.assertTrue(m.add_option.called)
         self.assertEqual(parser, m)
         self.assertEqual(hooks, [])
         # clean-up

Reply via email to