CI with pip install and pytest

This commit is contained in:
2026-03-22 12:34:01 +00:00
parent 986c74e117
commit e186840762

View File

@@ -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