This commit is contained in:
@@ -10,14 +10,17 @@ jobs:
|
||||
steps:
|
||||
- name: Show directory
|
||||
run: |
|
||||
echo "PWD: $(pwd)"
|
||||
echo "=== Current directory ==="
|
||||
pwd
|
||||
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: |
|
||||
python3 --version
|
||||
pip3 --version
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
pip3 install -e . pytest pytest-asyncio
|
||||
- name: Run tests
|
||||
run: pytest tests/ -v --tb=short
|
||||
pip3 install -e /app 2>&1 || echo "Install failed with code $?"
|
||||
Reference in New Issue
Block a user