mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-06-06 16:18:45 +00:00
ci(core): enable retries only for HW tests
[no changelog]
This commit is contained in:
parent
8a5f599522
commit
5ed97dfebc
8
.github/workflows/core-hw.yml
vendored
8
.github/workflows/core-hw.yml
vendored
@ -39,7 +39,13 @@ jobs:
|
|||||||
STORAGE_INSECURE_TESTING_MODE: 1
|
STORAGE_INSECURE_TESTING_MODE: 1
|
||||||
BOOTLOADER_DEVEL: ${{ matrix.model == 'T2B1' && '1' || '0' }}
|
BOOTLOADER_DEVEL: ${{ matrix.model == 'T2B1' && '1' || '0' }}
|
||||||
# TODO: enable SD-related tests after fixing #4924
|
# 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
|
TT_UHUB_PORT: 1
|
||||||
timeout-minutes: 360 # 6h CI job timeout
|
timeout-minutes: 360 # 6h CI job timeout
|
||||||
steps:
|
steps:
|
||||||
|
@ -40,8 +40,6 @@ addopts =
|
|||||||
-rfER
|
-rfER
|
||||||
--strict-markers
|
--strict-markers
|
||||||
--random-order
|
--random-order
|
||||||
--retries=5
|
|
||||||
--retry-delay=1
|
|
||||||
testpaths = tests crypto storage python/tests
|
testpaths = tests crypto storage python/tests
|
||||||
xfail_strict = true
|
xfail_strict = true
|
||||||
junit_family = xunit2
|
junit_family = xunit2
|
||||||
|
Loading…
Reference in New Issue
Block a user