salt/pkg/tests/integration/test_ssm.py
Pedro Algarvio ba29a27ad7 Fix test
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
2023-05-03 11:15:07 +01:00

15 lines
271 B
Python

import os
import pytest
pytestmark = [
pytest.mark.skip_unless_on_windows,
]
def test_ssm_present(install_salt):
"""
The ssm.exe binary needs to be present in both the zip and the exe/msi
builds
"""
assert os.path.exists(install_salt.ssm_bin)