Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-Twisted for openSUSE:Factory checked in at 2022-02-23 16:25:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-Twisted (Old) and /work/SRC/openSUSE:Factory/.python-Twisted.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-Twisted" Wed Feb 23 16:25:39 2022 rev:53 rq:956891 version:22.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-Twisted/python-Twisted.changes 2022-02-11 23:06:43.330491315 +0100 +++ /work/SRC/openSUSE:Factory/.python-Twisted.new.1958/python-Twisted.changes 2022-02-23 16:25:46.399507378 +0100 @@ -1,0 +2,6 @@ +Wed Feb 23 00:30:47 UTC 2022 - Steve Kowalik <[email protected]> + +- Add patch skip-namespacewithwhitespace.patch: + * Skip a failing test with Expat 2.4.5. + +------------------------------------------------------------------- New: ---- skip-namespacewithwhitespace.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-Twisted.spec ++++++ --- /var/tmp/diff_new_pack.xtoEFM/_old 2022-02-23 16:25:47.139507404 +0100 +++ /var/tmp/diff_new_pack.xtoEFM/_new 2022-02-23 16:25:47.139507404 +0100 @@ -39,6 +39,8 @@ Patch5: no-pygtkcompat.patch # PATCH-FIX-OPENSUSE remove-dependency-version-upper-bounds.patch boo#1190036 -- run with h2 >= 4.0.0 and priority >= 2.0 Patch6: remove-dependency-version-upper-bounds.patch +# PATCH-FIX-OPENSUSE Skip test that is broken with Expat >= 2.4.5 +Patch7: skip-namespacewithwhitespace.patch BuildRequires: %{python_module Automat >= 0.8.0} BuildRequires: %{python_module PyHamcrest >= 1.9.0} BuildRequires: %{python_module appdirs >= 1.4.0} ++++++ skip-namespacewithwhitespace.patch ++++++ Index: Twisted-22.1.0/src/twisted/words/test/test_domish.py =================================================================== --- Twisted-22.1.0.orig/src/twisted/words/test/test_domish.py +++ Twisted-22.1.0/src/twisted/words/test/test_domish.py @@ -6,6 +6,7 @@ Tests for L{twisted.words.xish.domish}, """ +from unittest import SkipTest from zope.interface.verify import verifyObject from twisted.python.reflect import requireModule @@ -313,6 +314,7 @@ class DomishStreamTestsMixin: Whitespace in an xmlns value is preserved in the resulting node's C{uri} attribute. """ + raise SkipTest("Broken with new Expat.") xml = b"<root xmlns:foo=' bar baz '><foo:bar foo:baz='quux'/></root>" self.stream.parse(xml) self.assertEqual(self.elements[0].uri, " bar baz ")
