mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Skip test that hangs on PhotonOS 3
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
9f9a9ce45f
commit
6638e51c19
1 changed files with 3 additions and 1 deletions
|
@ -99,10 +99,12 @@ def salt_cloud_config_file(salt_master_factory):
|
|||
return os.path.join(salt_master_factory.config_dir, "cloud")
|
||||
|
||||
|
||||
def test_cloud_map_merge_conf(salt_cloud_config_file):
|
||||
def test_cloud_map_merge_conf(salt_cloud_config_file, grains):
|
||||
"""
|
||||
Ensure that nested values can be selectivly overridden in a map file
|
||||
"""
|
||||
if grains["os"] == "VMware Photon OS" and grains["osmajorrelease"] == 3:
|
||||
pytest.skip("Test hangs on PhotonOS 3")
|
||||
with patch(
|
||||
"salt.config.check_driver_dependencies", MagicMock(return_value=True)
|
||||
), patch("salt.cloud.Map.read", MagicMock(return_value=EXAMPLE_MAP)):
|
||||
|
|
Loading…
Add table
Reference in a new issue