Final CI with output capture
This commit is contained in:
@@ -7,8 +7,8 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install
|
||||
run: pip3 install --no-cache-dir -e /app
|
||||
- name: Install test deps
|
||||
run: pip3 install --no-cache-dir pytest pytest-asyncio
|
||||
run: |
|
||||
pip3 install --no-cache-dir -e /app 2>&1 | tail -30 || echo "Exit code: $?"
|
||||
- name: Run tests
|
||||
run: pytest /app/tests/ -v
|
||||
run: |
|
||||
pytest /app/tests/ -v 2>&1 | tail -30 || echo "Exit code: $?"
|
||||
Reference in New Issue
Block a user