From aa0326a7278aaf7631ac461eb85dc3ef5ef51968 Mon Sep 17 00:00:00 2001 From: Andrew Chow Date: Thu, 7 Feb 2019 10:29:35 -0500 Subject: [PATCH] Update .travis.yml to use poetry for build --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f1705f1aa..434cb0bdb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,7 @@ addons: - cython3 - ccache install: - - pip install pipenv pysdl2 python-bitcoinrpc protobuf + - pip install pipenv pysdl2 python-bitcoinrpc protobuf poetry # From trezor-mcu to get the correct protobuf version - curl -LO "https://github.com/google/protobuf/releases/download/v3.4.0/protoc-3.4.0-linux-x86_64.zip" - unzip "protoc-3.4.0-linux-x86_64.zip" -d protoc @@ -48,6 +48,6 @@ install: # Build emulators/simulators and bitcoind - cd test; ./setup_environment.sh; cd .. - pip uninstall -y trezor # Hack to get rid of master branch version of trezor that is installed for trezor-mcu build - - python setup.py install + - poetry install script: - - cd test; ./run_tests.py + - cd test; poetry run ./run_tests.py