Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed Oct 21, 2024
1 parent 481198a commit 8bf0a1d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/test_verify_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,12 @@ def test_imports(pyexec):


def test_pip_install_salt_git(pipexec, build, build_dir, pyexec, build_version):
if sys.platform == "win32" and "3.11" in build_version or "3.12" in build_version or "3.13" in build_version:
if (
sys.platform == "win32"
and "3.11" in build_version
or "3.12" in build_version
or "3.13" in build_version
):
pytest.xfail("Salt does not work with 3.11 or 3.12 on windows yet")
if sys.platform == "darwin" and "3.12" in build_version:
pytest.xfail("Salt does not work with 3.12 on macos yet")
Expand Down

0 comments on commit 8bf0a1d

Please sign in to comment.