Merge pull request #27380 from jtand/async_tests

Skipping Async tests
This commit is contained in:
Pedro Algarvio 2015-09-25 16:13:04 +01:00
commit 51e765078a
2 changed files with 4 additions and 2 deletions

View File

@ -19,7 +19,7 @@ import salt.transport.client
import salt.exceptions import salt.exceptions
# Import Salt Testing libs # Import Salt Testing libs
from salttesting import TestCase from salttesting import TestCase, skipIf
from salttesting.helpers import ensure_in_syspath from salttesting.helpers import ensure_in_syspath
ensure_in_syspath('../') ensure_in_syspath('../')
import integration import integration
@ -178,6 +178,7 @@ class BaseTCPPubCase(AsyncTestCase):
raise Exception('FDs still attached to the IOLoop: {0}'.format(failures)) 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): class AsyncPubChannelTest(BaseTCPPubCase, PubChannelMixin):
''' '''
Tests around the publish system Tests around the publish system

View File

@ -24,7 +24,7 @@ import salt.transport.client
import salt.exceptions import salt.exceptions
# Import Salt Testing libs # Import Salt Testing libs
from salttesting import TestCase from salttesting import TestCase, skipIf
from salttesting.helpers import ensure_in_syspath from salttesting.helpers import ensure_in_syspath
ensure_in_syspath('../') ensure_in_syspath('../')
@ -183,6 +183,7 @@ class BaseZMQPubCase(AsyncTestCase):
raise Exception('FDs still attached to the IOLoop: {0}'.format(failures)) 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): class AsyncPubChannelTest(BaseZMQPubCase, PubChannelMixin):
''' '''
Tests around the publish system Tests around the publish system