From b1eae588847883e25ab7443a0f3d846db7413da2 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 20 Jun 2018 00:13:13 +0200 Subject: [PATCH] tests: disable Stellar tests for T1 too --- trezorlib/tests/device_tests/test_msg_stellar_get_address.py | 1 + trezorlib/tests/device_tests/test_msg_stellar_get_public_key.py | 1 + .../tests/device_tests/test_msg_stellar_sign_transaction.py | 1 + 3 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 a2ab69db20..faa661d54a 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 trezorlib.tools import parse_path @pytest.mark.stellar +@pytest.mark.xfail(TREZOR_VERSION == 1, reason="T1 support is not yet finished") @pytest.mark.xfail(TREZOR_VERSION == 2, reason="T2 support is not yet finished") class TestMsgStellarGetAddress(TrezorTest): 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 e8bf8e5a39..aa1c41cd51 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 @@ -24,6 +24,7 @@ from trezorlib.tools import parse_path @pytest.mark.stellar +@pytest.mark.xfail(TREZOR_VERSION == 1, reason="T1 support is not yet finished") @pytest.mark.xfail(TREZOR_VERSION == 2, reason="T2 support is not yet finished") class TestMsgStellarGetPublicKey(TrezorTest): 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 d62c8bc5ed..a23ff8f2d4 100644 --- a/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py +++ b/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py @@ -56,6 +56,7 @@ import pytest @pytest.mark.stellar +@pytest.mark.xfail(TREZOR_VERSION == 1, reason="T1 support is not yet finished") @pytest.mark.xfail(TREZOR_VERSION == 2, reason="T2 support is not yet finished") class TestMsgStellarSignTransaction(TrezorTest):