From 18adf6cc4d40d82d0958855109298c6328d379d0 Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Wed, 9 May 2018 16:34:51 +0200 Subject: [PATCH] tests/stellar: marked as passing on T1 --- .../tests/device_tests/test_msg_stellar_get_public_key.py | 3 ++- .../tests/device_tests/test_msg_stellar_sign_transaction.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/trezorlib/tests/device_tests/test_msg_stellar_get_public_key.py b/trezorlib/tests/device_tests/test_msg_stellar_get_public_key.py index b18d20137..85c1d8377 100644 --- a/trezorlib/tests/device_tests/test_msg_stellar_get_public_key.py +++ b/trezorlib/tests/device_tests/test_msg_stellar_get_public_key.py @@ -14,11 +14,12 @@ # along with this library. If not, see . from .common import TrezorTest +from .conftest import TREZOR_VERSION from trezorlib import stellar import pytest -@pytest.mark.xfail # requires trezor-mcu PR #259 +@pytest.mark.xfail(TREZOR_VERSION == 2, reason="T2 support is not yet finished") class TestMsgStellarGetPublicKey(TrezorTest): def test_stellar_get_address(self): 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 0c1a2802c..4b2322982 100644 --- a/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py +++ b/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py @@ -19,10 +19,11 @@ from base64 import b64decode, b64encode from .common import TrezorTest +from .conftest import TREZOR_VERSION import pytest -@pytest.mark.xfail # requires trezor-mcu PR #259 +@pytest.mark.xfail(TREZOR_VERSION == 2, reason="T2 support is not yet finished") class TestMsgStellarSignTransaction(TrezorTest): def get_network_passphrase(self):