1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-27 14:52:10 +00:00

ci: preserve emulator logs for upgrade and persistence tests

This commit is contained in:
Martin Milata 2025-02-18 12:49:14 +01:00
parent be1c0c77ed
commit 8e72395631

View File

@ -369,6 +369,7 @@ jobs:
env: env:
TREZOR_UPGRADE_TEST: core TREZOR_UPGRADE_TEST: core
PYTEST_TIMEOUT: 400 PYTEST_TIMEOUT: 400
TREZOR_PYTEST_LOGS_DIR: ${{ github.workspace }}/tests/
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
@ -381,6 +382,13 @@ jobs:
- uses: ./.github/actions/environment - uses: ./.github/actions/environment
- run: nix-shell --run "tests/download_emulators.sh" - run: nix-shell --run "tests/download_emulators.sh"
- run: nix-shell --run "poetry run pytest tests/upgrade_tests" - run: nix-shell --run "poetry run pytest tests/upgrade_tests"
- uses: actions/upload-artifact@v4
with:
name: core-test-upgrade-${{ matrix.model }}-${{ matrix.asan }}
path: |
tests/trezor.log
retention-days: 7
if: always()
# Persistence tests - UI. # Persistence tests - UI.
@ -399,6 +407,7 @@ jobs:
env: env:
TREZOR_PROFILING: ${{ matrix.asan == 'noasan' && '1' || '0' }} TREZOR_PROFILING: ${{ matrix.asan == 'noasan' && '1' || '0' }}
PYTEST_TIMEOUT: 400 PYTEST_TIMEOUT: 400
TREZOR_PYTEST_LOGS_DIR: ${{ github.workspace }}/tests/
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
@ -421,6 +430,13 @@ jobs:
if: always() if: always()
continue-on-error: true continue-on-error: true
- uses: ./.github/actions/upload-coverage - uses: ./.github/actions/upload-coverage
- uses: actions/upload-artifact@v4
with:
name: core-test-persistence-${{ matrix.model }}-${{ matrix.asan }}
path: |
tests/trezor.log
retention-days: 7
if: always()
core_hwi_test: core_hwi_test:
name: HWI tests name: HWI tests