ci: add --ignore-installed to avoid typing_extensions uninstall error
Some checks failed
Build and Deploy iLSP / test (push) Failing after 19s
Build and Deploy iLSP / build-and-deploy (push) Has been skipped

This commit is contained in:
Henrik Jess Nielsen
2026-05-10 13:33:03 +02:00
parent 6385e159ff
commit c48ea919f6

View File

@@ -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