From 24aa5ddcfd33d732fc4afdd2189b62f6a17ca637 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sun, 1 Jun 2025 10:22:09 +0300 Subject: [PATCH] ci(core): disable authenticity tests on HW CI T2B1 device seems to have a locked bootloader so #5087 is not enough. https://github.com/trezor/trezor-firmware/actions/runs/15368486126/job/43244403997#step:8:19 [no changelog] --- .github/workflows/core-hw.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/core-hw.yml b/.github/workflows/core-hw.yml index 867d2b712a..f27656c78f 100644 --- a/.github/workflows/core-hw.yml +++ b/.github/workflows/core-hw.yml @@ -39,9 +39,11 @@ jobs: STORAGE_INSECURE_TESTING_MODE: 1 BOOTLOADER_DEVEL: ${{ matrix.model == 'T2B1' && '1' || '0' }} # TODO: enable SD-related tests after fixing #4924 + # Disable authenticity test since it requires DISABLE_OPTIGA=0 # 5.5h pytest global timeout TESTOPTS: >- -m 'not sd_card' + -k 'not test_authenticate_device' --durations=50 --session-timeout 19800 --retries=5