1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

tests: skip speed tests on T2

This commit is contained in:
Tomas Susanka 2019-11-01 13:59:12 +00:00
parent 2d8f70d49a
commit c6d6d6c1d7

View File

@ -24,6 +24,7 @@ from trezorlib.tools import H_
@pytest.mark.flaky(max_runs=5)
class TestBip32Speed:
@pytest.mark.skip_t2
def test_public_ckd(self, client):
btc.get_address(client, "Bitcoin", []) # to compute root node via BIP39
@ -35,6 +36,7 @@ class TestBip32Speed:
print("DEPTH", depth, "EXPECTED DELAY", expected, "REAL DELAY", delay)
assert delay <= expected
@pytest.mark.skip_t2
def test_private_ckd(self, client):
btc.get_address(client, "Bitcoin", []) # to compute root node via BIP39