mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
commit
51e765078a
2 changed files with 4 additions and 2 deletions
|
@ -19,7 +19,7 @@ import salt.transport.client
|
|||
import salt.exceptions
|
||||
|
||||
# Import Salt Testing libs
|
||||
from salttesting import TestCase
|
||||
from salttesting import TestCase, skipIf
|
||||
from salttesting.helpers import ensure_in_syspath
|
||||
ensure_in_syspath('../')
|
||||
import integration
|
||||
|
@ -178,6 +178,7 @@ class BaseTCPPubCase(AsyncTestCase):
|
|||
raise Exception('FDs still attached to the IOLoop: {0}'.format(failures))
|
||||
|
||||
|
||||
@skipIf(True, 'Skip until we can devote time to fix this test')
|
||||
class AsyncPubChannelTest(BaseTCPPubCase, PubChannelMixin):
|
||||
'''
|
||||
Tests around the publish system
|
||||
|
|
|
@ -24,7 +24,7 @@ import salt.transport.client
|
|||
import salt.exceptions
|
||||
|
||||
# Import Salt Testing libs
|
||||
from salttesting import TestCase
|
||||
from salttesting import TestCase, skipIf
|
||||
from salttesting.helpers import ensure_in_syspath
|
||||
ensure_in_syspath('../')
|
||||
|
||||
|
@ -183,6 +183,7 @@ class BaseZMQPubCase(AsyncTestCase):
|
|||
raise Exception('FDs still attached to the IOLoop: {0}'.format(failures))
|
||||
|
||||
|
||||
@skipIf(True, 'Skip until we can devote time to fix this test')
|
||||
class AsyncPubChannelTest(BaseZMQPubCase, PubChannelMixin):
|
||||
'''
|
||||
Tests around the publish system
|
||||
|
|
Loading…
Add table
Reference in a new issue