Improve CI debugging: show pip list and use --tb=short

This commit is contained in:
Bu5hm4nn
2026-03-22 10:40:17 +01:00
parent c47c5a86e0
commit 416690de62
2 changed files with 5 additions and 4 deletions

View File

@@ -44,8 +44,9 @@ jobs:
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r requirements-dev.txt pip install -r requirements-dev.txt
pip list
- name: Run tests - name: Run tests
run: pytest -q tests -v run: pytest tests -v --tb=short
type-check: type-check:
runs-on: [linux, docker] runs-on: [linux, docker]

View File

@@ -43,8 +43,9 @@ jobs:
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r requirements-dev.txt pip install -r requirements-dev.txt
pip list
- name: Run tests - name: Run tests
run: pytest -q tests -v run: pytest tests -v --tb=short
type-check: type-check:
runs-on: [linux, docker] runs-on: [linux, docker]
@@ -59,8 +60,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install mypy pip install -r requirements-dev.txt
pip install -r requirements.txt
- name: Run mypy - name: Run mypy
run: mypy app scripts --ignore-missing-imports run: mypy app scripts --ignore-missing-imports