fix: verbose CI to see actual errors
All checks were successful
CI / test (push) Successful in 13s

This commit is contained in:
2026-01-31 01:56:13 +00:00
parent f187d09958
commit 95df54e0e2

View File

@@ -23,8 +23,13 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install pytest
pip install -e . pip install -e .
- name: Run tests - name: Show Python version
run: pytest tests/ -v --tb=short run: python --version
- name: List installed packages
run: pip list
- name: Run tests with verbose output
run: pytest tests/ -v --tb=long 2>&1 || true