From 43fc14ef7c72c58c9d32d9433a33fd8f03e41bde Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 11:56:26 +0000 Subject: [PATCH] Verbose CI with import verification --- .gitea/workflows/ci.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9f667b5..5c742a8 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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 \ No newline at end of file + 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 \ No newline at end of file