CI with debug output - show Python version and installed packages
Some checks failed
CI / test (push) Failing after 16s

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
with:
python-version: '3.11'
- name: Install
run: pip install -e . && pip install pytest pytest-asyncio
- name: Install dependencies
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
run: pytest tests/ -v
run: |
echo "Python version:"
python --version
echo "Running tests..."
pytest tests/ -v --tb=short