Skip tests in integration.shell.test_master

Related to https://github.com/saltstack/salt-jenkins/issues/378

This is likely causing all of the flakiness we're seeing on test runs
when the master stops responding.

These tests should be in their own, isolated run, rather than with
the rest of the test suite.
This commit is contained in:
rallytime 2018-07-31 14:39:48 -04:00
parent c8e69431ff
commit 3c33ee554a
No known key found for this signature in database
GPG Key ID: E8F1A4B90D0DEA19

View File

@ -24,9 +24,11 @@ import tests.integration.utils
from tests.support.case import ShellCase from tests.support.case import ShellCase
from tests.support.paths import TMP from tests.support.paths import TMP
from tests.support.mixins import ShellCaseCommonTestsMixin from tests.support.mixins import ShellCaseCommonTestsMixin
from tests.support.unit import skipIf
from tests.integration.utils import testprogram from tests.integration.utils import testprogram
@skipIf(True, 'This test file should be in an isolated test space.')
class MasterTest(ShellCase, testprogram.TestProgramCase, ShellCaseCommonTestsMixin): class MasterTest(ShellCase, testprogram.TestProgramCase, ShellCaseCommonTestsMixin):
_call_binary_ = 'salt-master' _call_binary_ = 'salt-master'