Clean final CI workflow

This commit is contained in:
2026-03-22 12:54:41 +00:00
parent 37aaec4e03
commit 5fd8cac387

View File

@@ -7,10 +7,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install
run: |
set -x
pip3 install --no-cache-dir -e /app 2>&1 | tail -30 || echo "Exit code: $?"
run: pip3 install --no-cache-dir -e /app
- name: Install test deps
run: pip3 install --no-cache-dir pytest pytest-asyncio
- name: Run tests
run: |
set -x
pytest /app/tests/ -v 2>&1 | tail -30 || echo "Exit code: $?"
run: pytest /app/tests/ -v