From 416690de62ee27ae106c9b85567bb9913e4d6ad7 Mon Sep 17 00:00:00 2001 From: Bu5hm4nn Date: Sun, 22 Mar 2026 10:40:17 +0100 Subject: [PATCH] Improve CI debugging: show pip list and use --tb=short --- .forgejo/workflows/ci.yaml | 3 ++- .forgejo/workflows/deploy.yaml | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index b8cc25c..399279e 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -44,8 +44,9 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements-dev.txt + pip list - name: Run tests - run: pytest -q tests -v + run: pytest tests -v --tb=short type-check: runs-on: [linux, docker] diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index ff62b46..068d1be 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -43,8 +43,9 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements-dev.txt + pip list - name: Run tests - run: pytest -q tests -v + run: pytest tests -v --tb=short type-check: runs-on: [linux, docker] @@ -59,8 +60,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install mypy - pip install -r requirements.txt + pip install -r requirements-dev.txt - name: Run mypy run: mypy app scripts --ignore-missing-imports