CI with separate steps

This commit is contained in:
2026-03-22 12:42:21 +00:00
parent d66cb71f78
commit b1166636c0

View File

@@ -12,5 +12,7 @@ jobs:
whoami whoami
pwd pwd
ls -la /app ls -la /app
- name: Install and test - name: Install
run: pip3 install -e /app && pip3 install pytest pytest-asyncio && pytest /app/tests/ -v || echo "Tests completed with code $?" run: pip3 install -e /app && pip3 install pytest pytest-asyncio
- name: Run tests
run: pytest /app/tests/ -v