Final CI - minimal and clean
Some checks failed
CI / test (push) Failing after 14s

This commit is contained in:
2026-03-22 11:57:30 +00:00
parent 43fc14ef7c
commit 5c9becbaa4

View File

@@ -13,13 +13,6 @@ jobs:
with:
python-version: '3.11'
- name: Install
run: |
pip install -e .
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
run: pip install -e . && pip install pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v