From 5c9becbaa4d68dc4f00d076d2889b0e5f0f39ad5 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 11:57:30 +0000 Subject: [PATCH] Final CI - minimal and clean --- .gitea/workflows/ci.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5c742a8..c024e7f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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 \ No newline at end of file + run: pip install -e . && pip install pytest pytest-asyncio + - name: Run tests + run: pytest tests/ -v \ No newline at end of file