1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00

tests: xfail Stellar on T1 until we re-enable it

This commit is contained in:
matejcik 2018-09-04 16:14:29 +02:00
parent d235875e5e
commit 80766ca6b3
2 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,7 @@ from .conftest import TREZOR_VERSION
@pytest.mark.stellar
@pytest.mark.xfail(TREZOR_VERSION == 1, reason="Stellar currently disabled on T1")
class TestMsgStellarGetAddress(TrezorTest):
def test_stellar_get_address(self):
self.setup_mnemonic_nopin_nopassphrase()

View File

@ -55,9 +55,11 @@ from trezorlib import messages as proto, stellar
from trezorlib.tools import parse_path
from .common import TrezorTest
from .conftest import TREZOR_VERSION
@pytest.mark.stellar
@pytest.mark.xfail(TREZOR_VERSION == 1, reason="Stellar currently disabled on T1")
class TestMsgStellarSignTransaction(TrezorTest):
ADDRESS_N = parse_path(stellar.DEFAULT_BIP32_PATH)