CI with debug output - show Python version and installed packages
Some checks failed
CI / test (push) Failing after 16s
Some checks failed
CI / test (push) Failing after 16s
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user