Skip to content

Commit aa3933a

Browse files
committed
Skip git based install until we fix windows man pages issue
1 parent 526a908 commit aa3933a

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

tests/test_verify_build.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,13 +180,15 @@ def test_imports(pyexec):
180180

181181

182182
def test_pip_install_salt_git(pipexec, build, build_dir, pyexec, build_version):
183-
if (
184-
sys.platform == "win32"
185-
and "3.11" in build_version
183+
if sys.platform == "win32" and (
184+
"3.10" in build_version
185+
or "3.11" in build_version
186186
or "3.12" in build_version
187187
or "3.13" in build_version
188188
):
189-
pytest.xfail("Salt does not work with 3.11 or 3.12 on windows yet")
189+
pytest.xfail(
190+
"Salt git install fails on Windows (setup.py tries to install missing man pages)"
191+
)
190192
if sys.platform == "darwin" and "3.12" in build_version:
191193
pytest.xfail("Salt does not work with 3.12 on macos yet")
192194
if sys.platform == "darwin" and "3.13" in build_version:

0 commit comments

Comments
 (0)