diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 95db76b..d1a2af9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,8 +9,16 @@ jobs: git clone https://${{ gitea.server }}/${{ gitea.repository }} . git checkout ${{ gitea.sha }} - - name: Install and test + - name: Debug info run: | - pip3 install pytest - pip3 install click pyyaml rich - pytest tests/ -v --tb=short + ls -la tests/ + head -20 tests/test_cli.py || true + + - 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