mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Skip new deltaproxy tests on tcp transport
This commit is contained in:
parent
121c0a8b38
commit
56a75eb553
1 changed files with 6 additions and 0 deletions
|
@ -14,6 +14,12 @@ from tests.support.helpers import PRE_PYTEST_SKIP_REASON
|
|||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@pytest.fixture(scope="package", autouse=True)
|
||||
def skip_on_tcp_transport(request):
|
||||
if request.config.getoption("--transport") == "tcp":
|
||||
pytest.skip("Deltaproxy under the TPC transport is not working. See #61367")
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def proxy_minion_id(salt_master):
|
||||
_proxy_minion_id = random_string("proxy-minion-")
|
||||
|
|
Loading…
Add table
Reference in a new issue