From 8bf0a1d1eb95e1de402bb490ceb3395c193b2b84 Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Mon, 21 Oct 2024 14:12:30 -0700 Subject: [PATCH] Fix pre-commit --- tests/test_verify_build.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/test_verify_build.py b/tests/test_verify_build.py index d8a1f52b..d8e38c39 100644 --- a/tests/test_verify_build.py +++ b/tests/test_verify_build.py @@ -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")