mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
parent
111e927b69
commit
28ba98c613
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user