From 782f8687172c5a19f4a142e498106a18ff7fc0c2 Mon Sep 17 00:00:00 2001 From: grdddj Date: Wed, 10 Nov 2021 21:24:45 +0100 Subject: [PATCH] chore(tests): organize device tests into folders --- tests/device_tests/binance/__init__.py | 0 .../test_get_address.py} | 0 .../test_get_public_key.py} | 0 .../{test_msg_binance_sign_tx.py => binance/test_sign_tx.py} | 0 tests/device_tests/eos/__init__.py | 0 .../test_get_public_key.py} | 2 +- .../{test_msg_eos_signtx.py => eos/test_signtx.py} | 2 +- tests/device_tests/monero/__init__.py | 0 .../test_getaddress.py} | 2 +- .../test_getwatchkey.py} | 2 +- tests/device_tests/nem/__init__.py | 0 .../{test_msg_nem_getaddress.py => nem/test_getaddress.py} | 2 +- .../test_signtx_mosaics.py} | 2 +- .../test_signtx_mosaics_t2.py} | 2 +- .../test_signtx_multisig.py} | 2 +- .../test_signtx_others.py} | 2 +- .../test_signtx_transfers.py} | 2 +- tests/device_tests/recovery/__init__.py | 0 .../test_bip39.py} | 2 +- .../test_bip39_dryrun.py} | 4 ++-- .../test_bip39_t2.py} | 2 +- .../test_slip39_advanced.py} | 2 +- .../test_slip39_advanced_dryrun.py} | 2 +- .../test_slip39_basic.py} | 2 +- .../test_slip39_basic_dryrun.py} | 2 +- tests/device_tests/reset/__init__.py | 0 .../{test_msg_resetdevice_bip39.py => reset/test_bip39.py} | 2 +- .../test_bip39_skipbackup.py} | 2 +- .../test_bip39_t2.py} | 2 +- .../test_slip39_advanced.py} | 2 +- .../test_slip39_basic.py} | 2 +- .../test_get_address.py} | 0 .../{test_msg_ripple_sign_tx.py => ripple/test_sign_tx.py} | 0 tests/device_tests/tezos/__init__.py | 0 .../test_getaddress.py} | 0 .../test_getpublickey.py} | 0 .../{test_msg_tezos_sign_tx.py => tezos/test_sign_tx.py} | 0 37 files changed, 23 insertions(+), 23 deletions(-) create mode 100644 tests/device_tests/binance/__init__.py rename tests/device_tests/{test_msg_binance_get_address.py => binance/test_get_address.py} (100%) rename tests/device_tests/{test_msg_binance_get_public_key.py => binance/test_get_public_key.py} (100%) rename tests/device_tests/{test_msg_binance_sign_tx.py => binance/test_sign_tx.py} (100%) create mode 100644 tests/device_tests/eos/__init__.py rename tests/device_tests/{test_msg_eos_get_public_key.py => eos/test_get_public_key.py} (98%) rename tests/device_tests/{test_msg_eos_signtx.py => eos/test_signtx.py} (99%) create mode 100644 tests/device_tests/monero/__init__.py rename tests/device_tests/{test_msg_monero_getaddress.py => monero/test_getaddress.py} (98%) rename tests/device_tests/{test_msg_monero_getwatchkey.py => monero/test_getwatchkey.py} (98%) create mode 100644 tests/device_tests/nem/__init__.py rename tests/device_tests/{test_msg_nem_getaddress.py => nem/test_getaddress.py} (97%) rename tests/device_tests/{test_msg_nem_signtx_mosaics.py => nem/test_signtx_mosaics.py} (99%) rename tests/device_tests/{test_msg_nem_signtx_mosaics_t2.py => nem/test_signtx_mosaics_t2.py} (99%) rename tests/device_tests/{test_msg_nem_signtx_multisig.py => nem/test_signtx_multisig.py} (99%) rename tests/device_tests/{test_msg_nem_signtx_others.py => nem/test_signtx_others.py} (99%) rename tests/device_tests/{test_msg_nem_signtx_transfers.py => nem/test_signtx_transfers.py} (99%) create mode 100644 tests/device_tests/recovery/__init__.py rename tests/device_tests/{test_msg_recoverydevice_bip39.py => recovery/test_bip39.py} (99%) rename tests/device_tests/{test_msg_recoverydevice_bip39_dryrun.py => recovery/test_bip39_dryrun.py} (99%) rename tests/device_tests/{test_msg_recoverydevice_bip39_t2.py => recovery/test_bip39_t2.py} (99%) rename tests/device_tests/{test_msg_recoverydevice_slip39_advanced.py => recovery/test_slip39_advanced.py} (99%) rename tests/device_tests/{test_msg_recoverydevice_slip39_advanced_dryrun.py => recovery/test_slip39_advanced_dryrun.py} (97%) rename tests/device_tests/{test_msg_recoverydevice_slip39_basic.py => recovery/test_slip39_basic.py} (99%) rename tests/device_tests/{test_msg_recoverydevice_slip39_basic_dryrun.py => recovery/test_slip39_basic_dryrun.py} (98%) create mode 100644 tests/device_tests/reset/__init__.py rename tests/device_tests/{test_msg_resetdevice_bip39.py => reset/test_bip39.py} (99%) rename tests/device_tests/{test_msg_resetdevice_bip39_skipbackup.py => reset/test_bip39_skipbackup.py} (99%) rename tests/device_tests/{test_msg_resetdevice_bip39_t2.py => reset/test_bip39_t2.py} (99%) rename tests/device_tests/{test_msg_resetdevice_slip39_advanced.py => reset/test_slip39_advanced.py} (98%) rename tests/device_tests/{test_msg_resetdevice_slip39_basic.py => reset/test_slip39_basic.py} (99%) rename tests/device_tests/{test_msg_ripple_get_address.py => ripple/test_get_address.py} (100%) rename tests/device_tests/{test_msg_ripple_sign_tx.py => ripple/test_sign_tx.py} (100%) create mode 100644 tests/device_tests/tezos/__init__.py rename tests/device_tests/{test_msg_tezos_getaddress.py => tezos/test_getaddress.py} (100%) rename tests/device_tests/{test_msg_tezos_getpublickey.py => tezos/test_getpublickey.py} (100%) rename tests/device_tests/{test_msg_tezos_sign_tx.py => tezos/test_sign_tx.py} (100%) diff --git a/tests/device_tests/binance/__init__.py b/tests/device_tests/binance/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/device_tests/test_msg_binance_get_address.py b/tests/device_tests/binance/test_get_address.py similarity index 100% rename from tests/device_tests/test_msg_binance_get_address.py rename to tests/device_tests/binance/test_get_address.py diff --git a/tests/device_tests/test_msg_binance_get_public_key.py b/tests/device_tests/binance/test_get_public_key.py similarity index 100% rename from tests/device_tests/test_msg_binance_get_public_key.py rename to tests/device_tests/binance/test_get_public_key.py diff --git a/tests/device_tests/test_msg_binance_sign_tx.py b/tests/device_tests/binance/test_sign_tx.py similarity index 100% rename from tests/device_tests/test_msg_binance_sign_tx.py rename to tests/device_tests/binance/test_sign_tx.py diff --git a/tests/device_tests/eos/__init__.py b/tests/device_tests/eos/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/device_tests/test_msg_eos_get_public_key.py b/tests/device_tests/eos/test_get_public_key.py similarity index 98% rename from tests/device_tests/test_msg_eos_get_public_key.py rename to tests/device_tests/eos/test_get_public_key.py index 028ef546a..6a204c2e9 100644 --- a/tests/device_tests/test_msg_eos_get_public_key.py +++ b/tests/device_tests/eos/test_get_public_key.py @@ -19,7 +19,7 @@ import pytest from trezorlib.eos import get_public_key from trezorlib.tools import parse_path -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 @pytest.mark.altcoin diff --git a/tests/device_tests/test_msg_eos_signtx.py b/tests/device_tests/eos/test_signtx.py similarity index 99% rename from tests/device_tests/test_msg_eos_signtx.py rename to tests/device_tests/eos/test_signtx.py index 3ae3bcb5a..e0d9c1f94 100644 --- a/tests/device_tests/test_msg_eos_signtx.py +++ b/tests/device_tests/eos/test_signtx.py @@ -20,7 +20,7 @@ from trezorlib import eos from trezorlib.messages import EosSignedTx from trezorlib.tools import parse_path -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 CHAIN_ID = "cf057bbfb72640471fd910bcb67639c22df9f92470936cddc1ade0e2f2e7dc4f" ADDRESS_N = parse_path("m/44'/194'/0'/0/0") diff --git a/tests/device_tests/monero/__init__.py b/tests/device_tests/monero/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/device_tests/test_msg_monero_getaddress.py b/tests/device_tests/monero/test_getaddress.py similarity index 98% rename from tests/device_tests/test_msg_monero_getaddress.py rename to tests/device_tests/monero/test_getaddress.py index bf120d540..119a6b787 100644 --- a/tests/device_tests/test_msg_monero_getaddress.py +++ b/tests/device_tests/monero/test_getaddress.py @@ -19,7 +19,7 @@ import pytest from trezorlib import monero from trezorlib.tools import parse_path -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 @pytest.mark.altcoin diff --git a/tests/device_tests/test_msg_monero_getwatchkey.py b/tests/device_tests/monero/test_getwatchkey.py similarity index 98% rename from tests/device_tests/test_msg_monero_getwatchkey.py rename to tests/device_tests/monero/test_getwatchkey.py index b65bd7ab8..fc252cbf4 100644 --- a/tests/device_tests/test_msg_monero_getwatchkey.py +++ b/tests/device_tests/monero/test_getwatchkey.py @@ -19,7 +19,7 @@ import pytest from trezorlib import monero from trezorlib.tools import parse_path -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 @pytest.mark.altcoin diff --git a/tests/device_tests/nem/__init__.py b/tests/device_tests/nem/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/device_tests/test_msg_nem_getaddress.py b/tests/device_tests/nem/test_getaddress.py similarity index 97% rename from tests/device_tests/test_msg_nem_getaddress.py rename to tests/device_tests/nem/test_getaddress.py index 883ac363c..8a3dbef84 100644 --- a/tests/device_tests/test_msg_nem_getaddress.py +++ b/tests/device_tests/nem/test_getaddress.py @@ -19,7 +19,7 @@ import pytest from trezorlib import nem from trezorlib.tools import parse_path -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 @pytest.mark.altcoin diff --git a/tests/device_tests/test_msg_nem_signtx_mosaics.py b/tests/device_tests/nem/test_signtx_mosaics.py similarity index 99% rename from tests/device_tests/test_msg_nem_signtx_mosaics.py rename to tests/device_tests/nem/test_signtx_mosaics.py index 25e2b03b1..566d85860 100644 --- a/tests/device_tests/test_msg_nem_signtx_mosaics.py +++ b/tests/device_tests/nem/test_signtx_mosaics.py @@ -19,7 +19,7 @@ import pytest from trezorlib import nem from trezorlib.tools import parse_path -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 # assertion data from T1 diff --git a/tests/device_tests/test_msg_nem_signtx_mosaics_t2.py b/tests/device_tests/nem/test_signtx_mosaics_t2.py similarity index 99% rename from tests/device_tests/test_msg_nem_signtx_mosaics_t2.py rename to tests/device_tests/nem/test_signtx_mosaics_t2.py index 6b4d26626..32abf364b 100644 --- a/tests/device_tests/test_msg_nem_signtx_mosaics_t2.py +++ b/tests/device_tests/nem/test_signtx_mosaics_t2.py @@ -19,7 +19,7 @@ import pytest from trezorlib import nem from trezorlib.tools import parse_path -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 ADDRESS_N = parse_path("m/44'/1'/0'/0'/0'") diff --git a/tests/device_tests/test_msg_nem_signtx_multisig.py b/tests/device_tests/nem/test_signtx_multisig.py similarity index 99% rename from tests/device_tests/test_msg_nem_signtx_multisig.py rename to tests/device_tests/nem/test_signtx_multisig.py index 7b47c367a..aca5aae8b 100644 --- a/tests/device_tests/test_msg_nem_signtx_multisig.py +++ b/tests/device_tests/nem/test_signtx_multisig.py @@ -19,7 +19,7 @@ import pytest from trezorlib import nem from trezorlib.tools import parse_path -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 # assertion data from T1 diff --git a/tests/device_tests/test_msg_nem_signtx_others.py b/tests/device_tests/nem/test_signtx_others.py similarity index 99% rename from tests/device_tests/test_msg_nem_signtx_others.py rename to tests/device_tests/nem/test_signtx_others.py index 14077f17b..63616fc0d 100644 --- a/tests/device_tests/test_msg_nem_signtx_others.py +++ b/tests/device_tests/nem/test_signtx_others.py @@ -19,7 +19,7 @@ import pytest from trezorlib import nem from trezorlib.tools import parse_path -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 # assertion data from T1 diff --git a/tests/device_tests/test_msg_nem_signtx_transfers.py b/tests/device_tests/nem/test_signtx_transfers.py similarity index 99% rename from tests/device_tests/test_msg_nem_signtx_transfers.py rename to tests/device_tests/nem/test_signtx_transfers.py index 64f3d15b7..b712e8ae2 100644 --- a/tests/device_tests/test_msg_nem_signtx_transfers.py +++ b/tests/device_tests/nem/test_signtx_transfers.py @@ -19,7 +19,7 @@ import pytest from trezorlib import messages as proto, nem from trezorlib.tools import parse_path -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 # assertion data from T1 diff --git a/tests/device_tests/recovery/__init__.py b/tests/device_tests/recovery/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/device_tests/test_msg_recoverydevice_bip39.py b/tests/device_tests/recovery/test_bip39.py similarity index 99% rename from tests/device_tests/test_msg_recoverydevice_bip39.py rename to tests/device_tests/recovery/test_bip39.py index 00fc978ad..ead5c3f89 100644 --- a/tests/device_tests/test_msg_recoverydevice_bip39.py +++ b/tests/device_tests/recovery/test_bip39.py @@ -18,7 +18,7 @@ import pytest from trezorlib import device, messages as proto -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 PIN4 = "1234" PIN6 = "789456" diff --git a/tests/device_tests/test_msg_recoverydevice_bip39_dryrun.py b/tests/device_tests/recovery/test_bip39_dryrun.py similarity index 99% rename from tests/device_tests/test_msg_recoverydevice_bip39_dryrun.py rename to tests/device_tests/recovery/test_bip39_dryrun.py index 38ee3d82d..80e96dfba 100644 --- a/tests/device_tests/test_msg_recoverydevice_bip39_dryrun.py +++ b/tests/device_tests/recovery/test_bip39_dryrun.py @@ -18,8 +18,8 @@ import pytest from trezorlib import device, exceptions, messages -from .. import buttons -from ..common import MNEMONIC12 +from ... import buttons +from ...common import MNEMONIC12 def do_recover_legacy(client, mnemonic, **kwargs): diff --git a/tests/device_tests/test_msg_recoverydevice_bip39_t2.py b/tests/device_tests/recovery/test_bip39_t2.py similarity index 99% rename from tests/device_tests/test_msg_recoverydevice_bip39_t2.py rename to tests/device_tests/recovery/test_bip39_t2.py index e9389b91c..c2f27bbf1 100644 --- a/tests/device_tests/test_msg_recoverydevice_bip39_t2.py +++ b/tests/device_tests/recovery/test_bip39_t2.py @@ -18,7 +18,7 @@ import pytest from trezorlib import device, exceptions, messages -from ..common import MNEMONIC12 +from ...common import MNEMONIC12 pytestmark = pytest.mark.skip_t1 diff --git a/tests/device_tests/test_msg_recoverydevice_slip39_advanced.py b/tests/device_tests/recovery/test_slip39_advanced.py similarity index 99% rename from tests/device_tests/test_msg_recoverydevice_slip39_advanced.py rename to tests/device_tests/recovery/test_slip39_advanced.py index d1f251ca8..380960832 100644 --- a/tests/device_tests/test_msg_recoverydevice_slip39_advanced.py +++ b/tests/device_tests/recovery/test_slip39_advanced.py @@ -18,7 +18,7 @@ import pytest from trezorlib import device, exceptions, messages -from ..common import ( +from ...common import ( MNEMONIC_SLIP39_ADVANCED_20, MNEMONIC_SLIP39_ADVANCED_33, recovery_enter_shares, diff --git a/tests/device_tests/test_msg_recoverydevice_slip39_advanced_dryrun.py b/tests/device_tests/recovery/test_slip39_advanced_dryrun.py similarity index 97% rename from tests/device_tests/test_msg_recoverydevice_slip39_advanced_dryrun.py rename to tests/device_tests/recovery/test_slip39_advanced_dryrun.py index 28e9c0db3..a19250d9d 100644 --- a/tests/device_tests/test_msg_recoverydevice_slip39_advanced_dryrun.py +++ b/tests/device_tests/recovery/test_slip39_advanced_dryrun.py @@ -19,7 +19,7 @@ import pytest from trezorlib import device, messages from trezorlib.exceptions import TrezorFailure -from ..common import MNEMONIC_SLIP39_ADVANCED_20, recovery_enter_shares +from ...common import MNEMONIC_SLIP39_ADVANCED_20, recovery_enter_shares pytestmark = pytest.mark.skip_t1 diff --git a/tests/device_tests/test_msg_recoverydevice_slip39_basic.py b/tests/device_tests/recovery/test_slip39_basic.py similarity index 99% rename from tests/device_tests/test_msg_recoverydevice_slip39_basic.py rename to tests/device_tests/recovery/test_slip39_basic.py index 5bd0fb1b5..8468e892c 100644 --- a/tests/device_tests/test_msg_recoverydevice_slip39_basic.py +++ b/tests/device_tests/recovery/test_slip39_basic.py @@ -18,7 +18,7 @@ import pytest from trezorlib import device, exceptions, messages -from ..common import ( +from ...common import ( MNEMONIC_SLIP39_BASIC_20_3of6, MNEMONIC_SLIP39_BASIC_20_3of6_SECRET, recovery_enter_shares, diff --git a/tests/device_tests/test_msg_recoverydevice_slip39_basic_dryrun.py b/tests/device_tests/recovery/test_slip39_basic_dryrun.py similarity index 98% rename from tests/device_tests/test_msg_recoverydevice_slip39_basic_dryrun.py rename to tests/device_tests/recovery/test_slip39_basic_dryrun.py index 344f0e45d..0a24659c3 100644 --- a/tests/device_tests/test_msg_recoverydevice_slip39_basic_dryrun.py +++ b/tests/device_tests/recovery/test_slip39_basic_dryrun.py @@ -19,7 +19,7 @@ import pytest from trezorlib import device, messages from trezorlib.exceptions import TrezorFailure -from ..common import recovery_enter_shares +from ...common import recovery_enter_shares pytestmark = pytest.mark.skip_t1 diff --git a/tests/device_tests/reset/__init__.py b/tests/device_tests/reset/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/device_tests/test_msg_resetdevice_bip39.py b/tests/device_tests/reset/test_bip39.py similarity index 99% rename from tests/device_tests/test_msg_resetdevice_bip39.py rename to tests/device_tests/reset/test_bip39.py index c08eb74aa..b9046e90d 100644 --- a/tests/device_tests/test_msg_resetdevice_bip39.py +++ b/tests/device_tests/reset/test_bip39.py @@ -19,7 +19,7 @@ from mnemonic import Mnemonic from trezorlib import device, messages as proto -from ..common import generate_entropy +from ...common import generate_entropy def reset_device(client, strength): diff --git a/tests/device_tests/test_msg_resetdevice_bip39_skipbackup.py b/tests/device_tests/reset/test_bip39_skipbackup.py similarity index 99% rename from tests/device_tests/test_msg_resetdevice_bip39_skipbackup.py rename to tests/device_tests/reset/test_bip39_skipbackup.py index 1df767c25..9bd2d4a75 100644 --- a/tests/device_tests/test_msg_resetdevice_bip39_skipbackup.py +++ b/tests/device_tests/reset/test_bip39_skipbackup.py @@ -19,7 +19,7 @@ from mnemonic import Mnemonic from trezorlib import messages as proto -from ..common import generate_entropy +from ...common import generate_entropy @pytest.mark.skip_t2 diff --git a/tests/device_tests/test_msg_resetdevice_bip39_t2.py b/tests/device_tests/reset/test_bip39_t2.py similarity index 99% rename from tests/device_tests/test_msg_resetdevice_bip39_t2.py rename to tests/device_tests/reset/test_bip39_t2.py index 727926bad..a8600070c 100644 --- a/tests/device_tests/test_msg_resetdevice_bip39_t2.py +++ b/tests/device_tests/reset/test_bip39_t2.py @@ -23,7 +23,7 @@ from trezorlib import device, messages as proto from trezorlib.exceptions import TrezorFailure from trezorlib.messages import ButtonRequestType as B -from ..common import ( +from ...common import ( MNEMONIC12, click_through, generate_entropy, diff --git a/tests/device_tests/test_msg_resetdevice_slip39_advanced.py b/tests/device_tests/reset/test_slip39_advanced.py similarity index 98% rename from tests/device_tests/test_msg_resetdevice_slip39_advanced.py rename to tests/device_tests/reset/test_slip39_advanced.py index 93d9dbf87..e87e37be5 100644 --- a/tests/device_tests/test_msg_resetdevice_slip39_advanced.py +++ b/tests/device_tests/reset/test_slip39_advanced.py @@ -23,7 +23,7 @@ from trezorlib import device, messages as proto from trezorlib.exceptions import TrezorFailure from trezorlib.messages import BackupType, ButtonRequestType as B -from ..common import click_through, generate_entropy, read_and_confirm_mnemonic +from ...common import click_through, generate_entropy, read_and_confirm_mnemonic EXTERNAL_ENTROPY = b"zlutoucky kun upel divoke ody" * 2 diff --git a/tests/device_tests/test_msg_resetdevice_slip39_basic.py b/tests/device_tests/reset/test_slip39_basic.py similarity index 99% rename from tests/device_tests/test_msg_resetdevice_slip39_basic.py rename to tests/device_tests/reset/test_slip39_basic.py index 026b5dc8d..1db46e1bb 100644 --- a/tests/device_tests/test_msg_resetdevice_slip39_basic.py +++ b/tests/device_tests/reset/test_slip39_basic.py @@ -24,7 +24,7 @@ from trezorlib import device, messages as proto from trezorlib.exceptions import TrezorFailure from trezorlib.messages import BackupType, ButtonRequestType as B -from ..common import ( +from ...common import ( EXTERNAL_ENTROPY, click_through, generate_entropy, diff --git a/tests/device_tests/test_msg_ripple_get_address.py b/tests/device_tests/ripple/test_get_address.py similarity index 100% rename from tests/device_tests/test_msg_ripple_get_address.py rename to tests/device_tests/ripple/test_get_address.py diff --git a/tests/device_tests/test_msg_ripple_sign_tx.py b/tests/device_tests/ripple/test_sign_tx.py similarity index 100% rename from tests/device_tests/test_msg_ripple_sign_tx.py rename to tests/device_tests/ripple/test_sign_tx.py diff --git a/tests/device_tests/tezos/__init__.py b/tests/device_tests/tezos/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/device_tests/test_msg_tezos_getaddress.py b/tests/device_tests/tezos/test_getaddress.py similarity index 100% rename from tests/device_tests/test_msg_tezos_getaddress.py rename to tests/device_tests/tezos/test_getaddress.py diff --git a/tests/device_tests/test_msg_tezos_getpublickey.py b/tests/device_tests/tezos/test_getpublickey.py similarity index 100% rename from tests/device_tests/test_msg_tezos_getpublickey.py rename to tests/device_tests/tezos/test_getpublickey.py diff --git a/tests/device_tests/test_msg_tezos_sign_tx.py b/tests/device_tests/tezos/test_sign_tx.py similarity index 100% rename from tests/device_tests/test_msg_tezos_sign_tx.py rename to tests/device_tests/tezos/test_sign_tx.py