fix: debug test failure
Some checks failed
CI / test (push) Failing after 5s

This commit is contained in:
2026-02-02 04:28:09 +00:00
parent e42e7e7bc4
commit ff5b7d74a0

View File

@@ -9,8 +9,16 @@ jobs:
git clone https://${{ gitea.server }}/${{ gitea.repository }} . git clone https://${{ gitea.server }}/${{ gitea.repository }} .
git checkout ${{ gitea.sha }} git checkout ${{ gitea.sha }}
- name: Install and test - name: Debug info
run: | run: |
pip3 install pytest ls -la tests/
pip3 install click pyyaml rich head -20 tests/test_cli.py || true
pytest tests/ -v --tb=short
- name: Install deps
run: |
pip3 install --quiet pytest click pyyaml rich
- name: Run single test
run: |
pip3 install --quiet -e .
pytest tests/test_cli.py -v --tb=short || true