From ecb169e0039abcdb5d501d41477166afe523873e Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 18:58:39 +0000 Subject: [PATCH] Fix CI: separate test and lint steps with short traceback --- .gitea/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1f881c0..f44e778 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -15,10 +15,14 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.11' - - name: Run tests and linting + - name: Install dependencies run: | python -m pip install --upgrade pip pip install -e ".[dev]" - python -m pytest tests/ -v --cov=src --cov-report=term-missing + - name: Run tests + run: | + python -m pytest tests/ -v --tb=short + - name: Check linting + run: | pip install ruff ruff check src/