mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Temporary skip tests on PhotonOS 5
This commit is contained in:
parent
979261d688
commit
7762814c72
1 changed files with 4 additions and 1 deletions
|
@ -169,7 +169,10 @@ def docker_container(states):
|
|||
|
||||
|
||||
@pytest.fixture(scope="module")
|
||||
def image(tmp_path_factory):
|
||||
def image(grains, tmp_path_factory):
|
||||
if grains["os"] == "VMware Photon OS" and grains["osmajorrelease"] == 5:
|
||||
pytest.skip(f"Temporary skip on {grains['osfinger']}")
|
||||
|
||||
if not salt.utils.path.which("docker"):
|
||||
# Somehow the above skip_if_binaries_missing marker for docker
|
||||
# only get's evaluated after this fixture?!?
|
||||
|
|
Loading…
Add table
Reference in a new issue