Debug CI - find setup.py location
All checks were successful
CI / test (push) Successful in 6s

This commit is contained in:
2026-03-22 12:34:48 +00:00
parent e186840762
commit a34edb7638

View File

@@ -10,14 +10,17 @@ jobs:
steps: steps:
- name: Show directory - name: Show directory
run: | run: |
echo "PWD: $(pwd)" echo "=== Current directory ==="
pwd
ls -la ls -la
- name: Install Python and pip echo "=== Root directory ==="
ls -la /
- name: Find setup.py
run: |
find / -name "setup.py" 2>/dev/null | head -5
cat /app/setup.py 2>/dev/null || echo "No /app/setup.py"
- name: Install Python dependencies
run: | run: |
python3 --version python3 --version
pip3 --version pip3 --version
- name: Install dependencies pip3 install -e /app 2>&1 || echo "Install failed with code $?"
run: |
pip3 install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v --tb=short