forked from pool/python-Twisted
* The callable argument to twisted.internet.task.deferLater() is no longer required. (#9577) * twisted.internet.utils.getProcessOutputAndValue now accepts stdinBytes to write to the child process's standard input. (#9607) * Add new twisted.logger.capturedLogs context manager for capturing observed log events in tests. (#9617) * twisted.internet.base.PluggableResolverMixin, which implements the pluggable resolver interfaces for easier re-use in other reactors, has been factored out of ReactorBase. (#9632) * The PyPI page for Twisted has been enhanced to include more information and useful links. (#9648) - Refresh patch: * skip_MultiCast.patch - Remove merged patch hyperlink.patch OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Twisted?expand=0&rev=82
13 lines
570 B
Diff
13 lines
570 B
Diff
Index: Twisted-19.7.0/src/twisted/test/test_udp.py
|
|
===================================================================
|
|
--- Twisted-19.7.0.orig/src/twisted/test/test_udp.py
|
|
+++ Twisted-19.7.0/src/twisted/test/test_udp.py
|
|
@@ -514,6 +514,7 @@ class MulticastTests(unittest.TestCase):
|
|
skip = "Does not work on Azure Pipelines"
|
|
|
|
def setUp(self):
|
|
+ raise unittest.SkipTest("Multicast networking doesn't work with OBS")
|
|
self.server = Server()
|
|
self.client = Client()
|
|
# multicast won't work if we listen over loopback, apparently
|