Hello community,

here is the log from the commit of package python-testresources for 
openSUSE:Factory checked in at 2017-09-22 21:34:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-testresources (Old)
 and      /work/SRC/openSUSE:Factory/.python-testresources.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-testresources"

Fri Sep 22 21:34:24 2017 rev:8 rq:527700 version:2.0.1

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-testresources/python-testresources.changes    
    2017-05-06 20:46:52.534190547 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-testresources.new/python-testresources.changes
   2017-09-22 21:34:24.456484747 +0200
@@ -1,0 +2,5 @@
+Thu Sep 21 09:04:38 UTC 2017 - [email protected]
+
+- Add PR-8.patch . This skips a flaky test during python3 test runs
+
+-------------------------------------------------------------------

New:
----
  PR-8.patch

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

Other differences:
------------------
++++++ python-testresources.spec ++++++
--- /var/tmp/diff_new_pack.2N0dcy/_old  2017-09-22 21:34:25.264371025 +0200
+++ /var/tmp/diff_new_pack.2N0dcy/_new  2017-09-22 21:34:25.268370462 +0200
@@ -25,10 +25,13 @@
 Group:          Development/Languages/Python
 Url:            https://launchpad.net/testresources
 Source:         
https://files.pythonhosted.org/packages/source/t/testresources/testresources-%{version}.tar.gz
+# PATCH-FEATURE-UPSTREAM PR-8.patch -- 
https://github.com/testing-cabal/testresources/pull/8.patch
+Patch1:         PR-8.patch
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module fixtures}
 BuildRequires:  %{python_module pbr}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module six}
 BuildRequires:  %{python_module testtools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -43,6 +46,7 @@
 
 %prep
 %setup -q -n testresources-%{version}
+%patch1 -p1
 
 %build
 %python_build

++++++ PR-8.patch ++++++
>From c308ca14278da92c657c1a3a079fafb93443e0f0 Mon Sep 17 00:00:00 2001
From: Free Ekanayaka <[email protected]>
Date: Sat, 26 Nov 2016 15:37:57 +0000
Subject: [PATCH] Skip flaky testBasicSortTests on Python 3

---
 setup.cfg                                         | 1 +
 testresources/tests/test_optimising_test_suite.py | 2 ++
 2 files changed, 3 insertions(+)

Index: testresources-2.0.1/setup.cfg
===================================================================
--- testresources-2.0.1.orig/setup.cfg
+++ testresources-2.0.1/setup.cfg
@@ -19,7 +19,8 @@ classifier =
        Topic :: Software Development :: Testing
 
 [extras]
-test = 
+test =
+        six
        docutils
        fixtures
        testtools
Index: testresources-2.0.1/testresources/tests/test_optimising_test_suite.py
===================================================================
--- testresources-2.0.1.orig/testresources/tests/test_optimising_test_suite.py
+++ testresources-2.0.1/testresources/tests/test_optimising_test_suite.py
@@ -15,6 +15,7 @@
 #  license.
 #
 
+import six
 import testtools
 import random
 import testresources
@@ -498,6 +499,7 @@ class TestGraphStuff(testtools.TestCase)
         permutations.append([case4, case1, case3, case2])
         return permutations
 
+    @unittest2.skipIf(six.PY3, "Flaky on Python 3, see LP #1645008")
     def testBasicSortTests(self):
         # Test every permutation of inputs, with legacy tests.
         # Cannot use equal costs because of the use of

Reply via email to