From aa8e7930b7ebcbc7bacf638f04f09c30f550a5fd Mon Sep 17 00:00:00 2001 From: Julian Hofer Date: Mon, 7 Apr 2025 09:32:21 +0200 Subject: [PATCH] test: `pixi global` stop checking for `quicklaunch` on Windows `quicklaunch` has been deprecated for menuinst: https://github.com/conda/rattler/pull/1196 --- tests/integration_python/pixi_global/test_shortcuts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_python/pixi_global/test_shortcuts.py b/tests/integration_python/pixi_global/test_shortcuts.py index c625f9af95..27b7454b09 100644 --- a/tests/integration_python/pixi_global/test_shortcuts.py +++ b/tests/integration_python/pixi_global/test_shortcuts.py @@ -57,7 +57,7 @@ def shortcut_exists(self, data_home: Path, name: str) -> bool: class WindowsConfig(PlatformConfig): def _shortcut_paths(self, data_home: Path, name: str) -> List[Path]: - return [data_home / "Desktop" / f"{name}.lnk", data_home / "Quick Launch" / f"{name}.lnk"] + return [data_home / "Desktop" / f"{name}.lnk"] def shortcut_exists(self, data_home: Path, name: str) -> bool: for path in self._shortcut_paths(data_home, name):