From 80766ca6b335e52901db8d58e1beadf6b8a5afbb Mon Sep 17 00:00:00 2001 From: matejcik Date: Tue, 4 Sep 2018 16:14:29 +0200 Subject: [PATCH] tests: xfail Stellar on T1 until we re-enable it --- trezorlib/tests/device_tests/test_msg_stellar_get_address.py | 1 + .../tests/device_tests/test_msg_stellar_sign_transaction.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/trezorlib/tests/device_tests/test_msg_stellar_get_address.py b/trezorlib/tests/device_tests/test_msg_stellar_get_address.py index 3e7805e88..1513a73f0 100644 --- a/trezorlib/tests/device_tests/test_msg_stellar_get_address.py +++ b/trezorlib/tests/device_tests/test_msg_stellar_get_address.py @@ -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() diff --git a/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py b/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py index 2a051c598..fcafe6c72 100644 --- a/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py +++ b/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py @@ -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)