diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5578db4..5c0a646 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,8 +23,13 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest pip install -e . - - name: Run tests - run: pytest tests/ -v --tb=short + - name: Show Python version + 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