Skip some tests related to #32902 (#32995)

This commit is contained in:
Justin Anderson 2016-05-03 09:55:23 -06:00 committed by Mike Place
parent 111e927b69
commit 28ba98c613

View File

@ -7,6 +7,7 @@
from __future__ import absolute_import
import os
import threading
import platform
import time
import zmq.eventloop.ioloop
@ -34,6 +35,10 @@ import integration
from unit.transport.req_test import ReqChannelMixin
from unit.transport.pub_test import PubChannelMixin
ON_SUSE = False
if 'SuSE' in platform.dist():
ON_SUSE = True
# TODO: move to a library?
def get_config_file_path(filename):
@ -97,6 +102,7 @@ class ClearReqTestCases(BaseZMQReqCase, ReqChannelMixin):
raise tornado.gen.Return((payload, {'fun': 'send_clear'}))
@skipIf(ON_SUSE, 'Skipping until https://github.com/saltstack/salt/issues/32902 gets fixed')
class AESReqTestCases(BaseZMQReqCase, ReqChannelMixin):
def setUp(self):
self.channel = salt.transport.client.ReqChannel.factory(self.minion_opts)