CI with debug output - show Python version and installed packages
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user