From c48ea919f62406e5a9853f60780c9e626a792eb0 Mon Sep 17 00:00:00 2001 From: Henrik Jess Nielsen Date: Sun, 10 May 2026 13:33:03 +0200 Subject: [PATCH] ci: add --ignore-installed to avoid typing_extensions uninstall error --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 27432c9..0b5a278 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v4 - name: Install Python deps - run: pip3 install --break-system-packages "python-lsp-server[all]" lsprotocol pytest pytest-asyncio aiohttp 2>&1 | tail -5 + run: pip3 install --break-system-packages --ignore-installed "python-lsp-server[all]" lsprotocol pytest pytest-asyncio aiohttp 2>&1 | tail -5 - name: Run unit tests run: python3 -m pytest tests/ -v