Files
python-Twisted/skip_MultiCast.patch
Nico Krapp 58b79240ad - Update to 25.5.0
* twisted.internet.interfaces.IReactorMulticast now accept IPv6
    literals and allow for IPv6 multicast.
  * TCP throughput when sending data is slightly faster.
  * twisted.trial.unittest.TestCase.defer* methods were removed and
    converted to private methods.
  * Deprecations and removals in twisted.internet.defer
  * twisted.conch.client.direct.SSHClientTransport.verifyHostKey no
    longer crashes with an encoding error while attempting to verify
    the peer's IP address.
  * The twisted.web.websockets module has been added, adding a
    websockets server and client based on the wsproto library.
- Add py314.patch to fix or skip tests failing with Python 3.14

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Twisted?expand=0&rev=164
2025-09-29 10:36:24 +00:00

26 lines
915 B
Diff

---
src/twisted/test/test_udp.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Index: twisted-25.5.0/src/twisted/test/test_udp.py
===================================================================
--- twisted-25.5.0.orig/src/twisted/test/test_udp.py
+++ twisted-25.5.0/src/twisted/test/test_udp.py
@@ -22,7 +22,7 @@ from socket import (
inet_pton,
socket,
)
-from unittest import skipIf
+from unittest import skipIf, SkipTest
from twisted.internet import defer, error, interfaces, protocol, reactor, udp
from twisted.internet.address import IPv4Address, IPv6Address
@@ -638,6 +638,7 @@ class MulticastTests(TestCase):
wrongAddressFamily: str = "::1"
def setUp(self):
+ raise SkipTest("Multicast networking doesn't work with OBS")
self.server = Server()
self.client = Client()
# multicast won't work if we listen over loopback, apparently