1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 06:19:27 +00:00
trezor-firmware/tests/upgrade_tests
2021-10-13 11:53:17 +02:00
..
__init__.py test: Add test for progressive storage version upgrades without unlocking in between. 2021-03-25 14:24:41 +01:00
README.md
test_firmware_upgrades.py style(all): use f-strings for formatting 2021-10-13 11:53:17 +02:00
test_passphrase_consistency.py refactor(python): rework trezorlib protobuf codec 2021-06-08 09:55:19 +02:00

Running Upgrade Tests

  1. As always, use poetry environment:
poetry shell
  1. Download the emulators, if you have not already:
tests/download_emulators.sh
  1. And run the tests using pytest:
pytest tests/upgrade_tests

You can use TREZOR_UPGRADE_TEST environment variable if you would like to run core or legacy upgrade tests exclusively. This will run core only:

TREZOR_UPGRADE_TEST="core" pytest tests/upgrade_tests