Update CI - install dependencies explicitly before package
Some checks failed
CI / test (push) Failing after 13s

This commit is contained in:
2026-03-22 11:51:39 +00:00
parent bc8d9270a6
commit 30e64faa5f

View File

@@ -12,4 +12,10 @@ jobs:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: '3.11' python-version: '3.11'
- run: pip install pytest && pip install -e . && pytest tests/ -v - name: Install dependencies
run: |
pip install pytest pytest-asyncio
pip install click cryptography pygments rich zeroconf
pip install -e .
- name: Run tests
run: pytest tests/ -v