Minimal echo CI to test runner
This commit is contained in:
@@ -8,12 +8,10 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Echo test
|
||||||
uses: actions/checkout@v4
|
run: echo "Hello World"
|
||||||
- name: Install Python dependencies
|
- name: Show environment
|
||||||
run: |
|
run: |
|
||||||
python3 --version
|
echo "PWD: $(pwd)"
|
||||||
pip3 install -e . pytest pytest-asyncio
|
echo "Files: $(ls -la)"
|
||||||
- name: Run tests
|
python3 --version || echo "Python not found"
|
||||||
run: |
|
|
||||||
pytest tests/ -v --tb=short 2>&1 || true
|
|
||||||
|
|||||||
Reference in New Issue
Block a user