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):