forked from pool/python-Twisted
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user