mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Skip the test_badload test until Jenkins move is complete
Once this happens, we need to re-enable the test. The move over should also allow us to upgrade the version of salt-testing that is applied to the test VMs. Once this is complete, we can apply the `@flaky` decorator to this test. (salt-testing must be a version newer than the September release.)
This commit is contained in:
parent
b66b6f6423
commit
4b3ff0fe0f
1 changed files with 4 additions and 0 deletions
|
@ -112,6 +112,7 @@ class ClearReqTestCases(BaseZMQReqCase, ReqChannelMixin):
|
|||
raise tornado.gen.Return((payload, {'fun': 'send_clear'}))
|
||||
|
||||
|
||||
@skipIf(True, 'Skipping flaky test until Jenkins is moved to C7.')
|
||||
@skipIf(ON_SUSE, 'Skipping until https://github.com/saltstack/salt/issues/32902 gets fixed')
|
||||
class AESReqTestCases(BaseZMQReqCase, ReqChannelMixin):
|
||||
def setUp(self):
|
||||
|
@ -137,6 +138,9 @@ class AESReqTestCases(BaseZMQReqCase, ReqChannelMixin):
|
|||
'''
|
||||
Test a variety of bad requests, make sure that we get some sort of error
|
||||
'''
|
||||
# TODO: This test should be re-enabled when Jenkins moves to C7.
|
||||
# Once the version of salt-testing is increased to something newer than the September
|
||||
# release of salt-testing, the @flaky decorator should be applied to this test.
|
||||
msgs = ['', [], tuple()]
|
||||
for msg in msgs:
|
||||
with self.assertRaises(salt.exceptions.AuthenticationError):
|
||||
|
|
Loading…
Add table
Reference in a new issue