From ec3c0453f02753ab9c1c6ecc314f92031116d2e7 Mon Sep 17 00:00:00 2001 From: Kewde Date: Mon, 8 Jul 2019 09:39:46 +0000 Subject: [PATCH] legacy: remove last mentions of TREZOR_TRANSPORT_V1 (#312) --- legacy/README.md | 2 +- legacy/script/test | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/legacy/README.md b/legacy/README.md index 2944062707..f7e4fb3651 100644 --- a/legacy/README.md +++ b/legacy/README.md @@ -60,7 +60,7 @@ If you want to build device firmware, make sure you have the [GNU ARM Embedded toolchain](https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads) installed. You will also need Python 3.5 or later and [pipenv](https://pipenv.readthedocs.io/en/latest/install/). -* If you want to build the emulator instead of the firmware, run `export EMULATOR=1 TREZOR_TRANSPORT_V1=1` +* If you want to build the emulator instead of the firmware, run `export EMULATOR=1` * If you want to build with the debug link, run `export DEBUG_LINK=1`. Use this if you want to run the device tests. * When you change these variables, use `script/setup` to clean the repository diff --git a/legacy/script/test b/legacy/script/test index 58ef45ffa3..a463694aad 100755 --- a/legacy/script/test +++ b/legacy/script/test @@ -14,5 +14,4 @@ if [ "$EMULATOR" = 1 ]; then "${PYTHON:-python}" script/wait_for_emulator.py fi -export TREZOR_TRANSPORT_V1=1 "${PYTHON:-python}" -m pytest --pyarg trezorlib.tests.device_tests "$@"