15
0

Just raise SkipTest exception and be done with it.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Twisted?expand=0&rev=68
This commit is contained in:
2018-10-19 14:59:13 +00:00
committed by Git OBS Bridge
parent 9d268435a5
commit b96524c75c

View File

@@ -1,19 +1,10 @@
--- a/src/twisted/test/test_udp.py
+++ b/src/twisted/test/test_udp.py
@@ -15,6 +15,8 @@ from twisted.internet.defer import Defer
from twisted.internet import protocol, reactor, error, defer, interfaces, udp
from twisted.python import runtime
+import unittest as pyunit
+
class Mixin:
@@ -500,6 +502,7 @@ class ReactorShutdownInteractionTests(un
+@pyunit.skip("Multicast networking doesn't work with ")
@@ -503,6 +503,7 @@ class ReactorShutdownInteractionTests(un
class MulticastTests(unittest.TestCase):
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