Hello community,

here is the log from the commit of package python-sybil for openSUSE:Factory 
checked in at 2018-11-22 13:26:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sybil (Old)
 and      /work/SRC/openSUSE:Factory/.python-sybil.new.19453 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-sybil"

Thu Nov 22 13:26:35 2018 rev:5 rq:650654 version:1.0.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-sybil/python-sybil.changes        
2018-08-31 10:46:09.919327096 +0200
+++ /work/SRC/openSUSE:Factory/.python-sybil.new.19453/python-sybil.changes     
2018-11-22 13:26:55.373912392 +0100
@@ -1,0 +2,6 @@
+Wed Nov 21 13:01:18 UTC 2018 - Tomáš Chvátal <[email protected]>
+
+- Add patch to work with new pytest:
+  * sybil-pytest4.patch
+
+-------------------------------------------------------------------

New:
----
  sybil-pytest4.patch

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

Other differences:
------------------
++++++ python-sybil.spec ++++++
--- /var/tmp/diff_new_pack.139rth/_old  2018-11-22 13:26:56.233911493 +0100
+++ /var/tmp/diff_new_pack.139rth/_new  2018-11-22 13:26:56.233911493 +0100
@@ -12,7 +12,7 @@
 # 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/
 #
 
 
@@ -25,6 +25,7 @@
 Group:          Development/Languages/Python
 Url:            https://github.com/cjw296/sybil
 Source:         
https://files.pythonhosted.org/packages/source/s/sybil/sybil-%{version}.tar.gz
+Patch0:         sybil-pytest4.patch
 BuildRequires:  %{python_module Sphinx}
 BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module pkginfo}
@@ -57,6 +58,7 @@
 
 %prep
 %setup -q -n sybil-%{version}
+%patch0 -p1
 
 %build
 %python_build

++++++ sybil-pytest4.patch ++++++
>From 6461d8156cfb68bd073ec613a5a516916e97e549 Mon Sep 17 00:00:00 2001
From: Chris Withers <[email protected]>
Date: Wed, 17 Oct 2018 11:57:55 +0100
Subject: [PATCH] fix for latest pytest release

---
 tests/test_functional.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_functional.py b/tests/test_functional.py
index 9eb5509..ccce93d 100644
--- a/tests/test_functional.py
+++ b/tests/test_functional.py
@@ -27,7 +27,7 @@ def pytest_sessionfinish(self, session):
             self.session = session
 
     results = CollectResults()
-    return_code = pytest_main(['-vs', join(functional_test_dir, 'pytest')],
+    return_code = pytest_main(['-vvs', join(functional_test_dir, 'pytest')],
                               plugins=[results])
     assert return_code == 1
     assert results.session.testsfailed == 4

Reply via email to