CI with debug output - show Python version and installed packages

This commit is contained in:
2026-03-22 11:59:24 +00:00
parent 5c9becbaa4
commit 3b66515a83

View File

@@ -12,7 +12,16 @@ jobs:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: '3.11' python-version: '3.11'
- name: Install - name: Install dependencies
run: pip install -e . && pip install pytest pytest-asyncio run: |
python -m pip install --upgrade pip
pip install pytest pytest-asyncio
pip install -e .
- name: List installed packages
run: pip list
- name: Run tests - name: Run tests
run: pytest tests/ -v run: |
echo "Python version:"
python --version
echo "Running tests..."
pytest tests/ -v --tb=short