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