This commit is contained in:
@@ -20,11 +20,24 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.10'
|
||||||
|
|
||||||
|
- name: Debug - List files
|
||||||
|
run: |
|
||||||
|
ls -la
|
||||||
|
ls -la tests/ 2>/dev/null || echo "No tests/ directory"
|
||||||
|
|
||||||
|
- name: Debug - List Python files
|
||||||
|
run: |
|
||||||
|
find . -name "*.py" -type f | head -20
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install click rich pytest
|
pip install click rich pytest
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests with verbose output
|
||||||
run: |
|
run: |
|
||||||
python -m pytest tests/ -v
|
python -m pytest tests/ -v --tb=short 2>&1 || true
|
||||||
|
|
||||||
|
- name: Check pytest return code
|
||||||
|
run: |
|
||||||
|
python -m pytest tests/ -v --tb=short
|
||||||
|
|||||||
Reference in New Issue
Block a user