Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed Feb 16, 2024
1 parent 0472144 commit 8daa02f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/test_verify_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ def test_imports(pyexec):


@pytest.mark.skipif(
sys.platform != "linux" and get_build_version() == "3.11.4",
reason="3.11.4 will not work on windows yet",
sys.platform != "linux" and get_build_version() == "3.11.7",
reason="3.11.7 will not work on windows yet",
)
def test_pip_install_salt_git(pipexec, build, build_dir, pyexec):
env = os.environ.copy()
Expand Down Expand Up @@ -126,8 +126,8 @@ def test_pip_install_salt_git(pipexec, build, build_dir, pyexec):
@pytest.mark.skipif(
get_build_version()
and packaging.version.parse(get_build_version())
>= packaging.version.parse("3.11.4"),
reason="3.11.4 will not work with 3005.x",
>= packaging.version.parse("3.11.7"),
reason="3.11.7 will not work with 3005.x",
)
def test_pip_install_salt(pipexec, build, tmp_path, pyexec):
packages = [
Expand Down Expand Up @@ -178,8 +178,8 @@ def test_symlinked_scripts(pipexec, tmp_path, build):


@pytest.mark.skipif(
get_build_version() == "3.11.4",
reason="3.11.4 will not work until pyzmq is upgraded",
get_build_version() == "3.11.7",
reason="3.11.7 will not work until pyzmq is upgraded",
)
def test_pip_install_salt_w_static_requirements(pipexec, build, tmpdir):
env = os.environ.copy()
Expand Down Expand Up @@ -251,7 +251,7 @@ def test_pip_install_and_import_libcloud(pipexec, pyexec):
@pytest.mark.skip_on_darwin
@pytest.mark.skip_on_windows
@pytest.mark.skipif(
get_build_version() == "3.11.4", reason="3.11.4 will not work with 3005.x"
get_build_version() == "3.11.7", reason="3.11.7 will not work with 3005.x"
)
def test_pip_install_salt_pip_dir(pipexec, build):
packages = [
Expand Down

0 comments on commit 8daa02f

Please sign in to comment.