diff --git a/trezorlib/tests/device_tests/test_msg_cardano_get_address.py b/trezorlib/tests/device_tests/test_msg_cardano_get_address.py index 3330a8e2f..174d71af8 100644 --- a/trezorlib/tests/device_tests/test_msg_cardano_get_address.py +++ b/trezorlib/tests/device_tests/test_msg_cardano_get_address.py @@ -21,12 +21,10 @@ from trezorlib.cardano import get_address from trezorlib.tools import parse_path from .common import TrezorTest -from .conftest import TREZOR_VERSION @pytest.mark.cardano @pytest.mark.skip_t1 # T1 support is not planned -@pytest.mark.xfail(TREZOR_VERSION == 2, reason="T2 support is not yet finished") class TestMsgCardanoGetAddress(TrezorTest): @pytest.mark.parametrize( "path,expected_address", diff --git a/trezorlib/tests/device_tests/test_msg_cardano_get_public_key.py b/trezorlib/tests/device_tests/test_msg_cardano_get_public_key.py index 2deebf6c7..aebb15a83 100644 --- a/trezorlib/tests/device_tests/test_msg_cardano_get_public_key.py +++ b/trezorlib/tests/device_tests/test_msg_cardano_get_public_key.py @@ -22,12 +22,10 @@ from trezorlib.cardano import get_public_key from trezorlib.tools import parse_path from .common import TrezorTest -from .conftest import TREZOR_VERSION @pytest.mark.cardano @pytest.mark.skip_t1 # T1 support is not planned -@pytest.mark.xfail(TREZOR_VERSION == 2, reason="T2 support is not yet finished") class TestMsgCardanoGetPublicKey(TrezorTest): @pytest.mark.parametrize( "path,public_key,chain_code", diff --git a/trezorlib/tests/device_tests/test_msg_cardano_sign_transaction.py b/trezorlib/tests/device_tests/test_msg_cardano_sign_transaction.py index 200d9b584..15d9407ce 100644 --- a/trezorlib/tests/device_tests/test_msg_cardano_sign_transaction.py +++ b/trezorlib/tests/device_tests/test_msg_cardano_sign_transaction.py @@ -23,12 +23,10 @@ from trezorlib import messages from trezorlib.cardano import create_input, create_output from .common import TrezorTest -from .conftest import TREZOR_VERSION @pytest.mark.cardano @pytest.mark.skip_t1 # T1 support is not planned -@pytest.mark.xfail(TREZOR_VERSION == 2, reason="T2 support is not yet finished") class TestMsgCardanoSignTx(TrezorTest): def test_cardano_sign_tx_mainnet(self): self.setup_mnemonic_allallall() diff --git a/trezorlib/tests/device_tests/test_msg_ripple_get_address.py b/trezorlib/tests/device_tests/test_msg_ripple_get_address.py index 568e3fef5..6bdedda23 100644 --- a/trezorlib/tests/device_tests/test_msg_ripple_get_address.py +++ b/trezorlib/tests/device_tests/test_msg_ripple_get_address.py @@ -21,12 +21,10 @@ from trezorlib.ripple import get_address from trezorlib.tools import parse_path from .common import TrezorTest -from .conftest import TREZOR_VERSION @pytest.mark.ripple @pytest.mark.skip_t1 # T1 support is not planned -@pytest.mark.xfail(TREZOR_VERSION == 2, reason="T2 support is not yet finished") class TestMsgRippleGetAddress(TrezorTest): def test_ripple_get_address(self): # data from https://iancoleman.io/bip39/#english diff --git a/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py b/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py index 7df7e8769..17385fa4f 100644 --- a/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py +++ b/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py @@ -22,12 +22,10 @@ from trezorlib import messages, ripple from trezorlib.tools import CallException, parse_path from .common import TrezorTest -from .conftest import TREZOR_VERSION @pytest.mark.ripple @pytest.mark.skip_t1 # T1 support is not planned -@pytest.mark.xfail(TREZOR_VERSION == 2, reason="T2 support is not yet finished") class TestMsgRippleSignTx(TrezorTest): def test_ripple_sign_simple_tx(self): self.setup_mnemonic_allallall()