Verbose CI with import verification
Some checks failed
CI / test (push) Failing after 14s

This commit is contained in:
2026-03-22 11:56:26 +00:00
parent f22065e619
commit 43fc14ef7c

View File

@@ -12,10 +12,14 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
- name: Install
run: |
pip install pytest pytest-asyncio
pip install click cryptography pygments rich zeroconf
pip install -e .
- name: Run tests
run: pytest tests/ -v
pip install pytest pytest-asyncio
- name: Verify install
run: |
python -c "from snip.db import get_database; print('DB import OK')"
python -c "from snip.cli import cli; print('CLI import OK')"
- name: Test
run: |
pytest tests/ -v --tb=short 2>&1 | head -100