This commit is contained in:
@@ -8,10 +8,16 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Echo test
|
- name: Show directory
|
||||||
run: echo "Hello World"
|
|
||||||
- name: Show environment
|
|
||||||
run: |
|
run: |
|
||||||
echo "PWD: $(pwd)"
|
echo "PWD: $(pwd)"
|
||||||
echo "Files: $(ls -la)"
|
ls -la
|
||||||
python3 --version || echo "Python not found"
|
- name: Install Python and pip
|
||||||
|
run: |
|
||||||
|
python3 --version
|
||||||
|
pip3 --version
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
pip3 install -e . pytest pytest-asyncio
|
||||||
|
- name: Run tests
|
||||||
|
run: pytest tests/ -v --tb=short
|
||||||
Reference in New Issue
Block a user