From 24e11309ac2d0dc6fcba9f5e4c23e481637a5b93 Mon Sep 17 00:00:00 2001 From: Marcel Telka Date: Fri, 15 Aug 2025 23:35:32 +0200 Subject: [PATCH] fix: make test_find_python_from_uv_provider working on SunOS --- tests/test_posix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_posix.py b/tests/test_posix.py index 802ef46..fa07f12 100644 --- a/tests/test_posix.py +++ b/tests/test_posix.py @@ -98,7 +98,7 @@ def test_find_python_from_rye_provider(mocked_python, tmp_path, monkeypatch): def test_find_python_from_uv_provider(mocked_python, tmp_path, monkeypatch): - if platform.system() == "Linux": + if platform.system() == "Linux" or platform.system() == "SunOS": python_root = tmp_path / ".local/share/uv/python" else: # macos python_root = tmp_path / "Library/Application Support/uv/python"