diff --git a/.github/workflows/core-hw.yml b/.github/workflows/core-hw.yml index 77228c60d2..42d645baa2 100644 --- a/.github/workflows/core-hw.yml +++ b/.github/workflows/core-hw.yml @@ -39,7 +39,13 @@ jobs: STORAGE_INSECURE_TESTING_MODE: 1 BOOTLOADER_DEVEL: ${{ matrix.model == 'T2B1' && '1' || '0' }} # TODO: enable SD-related tests after fixing #4924 - TESTOPTS: "-m 'not sd_card' -k 'not authenticate' --durations=50 --session-timeout 19800" # 5.5h pytest global timeout + # 5.5h pytest global timeout + TESTOPTS: >- + -m 'not sd_card' -k 'not authenticate' + --durations=50 + --session-timeout 19800 + --retries=5 + --retry-delay=1 TT_UHUB_PORT: 1 timeout-minutes: 360 # 6h CI job timeout steps: diff --git a/setup.cfg b/setup.cfg index 4eee8d9d3e..87a3162a8f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -40,8 +40,6 @@ addopts = -rfER --strict-markers --random-order - --retries=5 - --retry-delay=1 testpaths = tests crypto storage python/tests xfail_strict = true junit_family = xunit2