From e9b66dab7ebd2cbd163e816565962f733362ea69 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 25 Sep 2017 16:45:42 +0200 Subject: [PATCH] travis: install python stuff locally --- .travis.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0c619d005..a26565391 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,13 +30,16 @@ addons: - python3 - python3-pip +before_install: + - pip3 install --user --upgrade pip setuptools wheel + install: - - pip3 install scons - - pip3 install ed25519 pyblake2 - - pip3 install flake8 - - pip3 install pytest - - pip3 install ecdsa mnemonic protobuf requests - - pip3 install git+https://github.com/trezor/python-trezor@master + - pip3 install --user scons + - pip3 install --user ed25519 pyblake2 + - pip3 install --user flake8 + - pip3 install --user pytest + - pip3 install --user ecdsa mnemonic protobuf requests + - pip3 install --user git+https://github.com/trezor/python-trezor@master script: - test "$GOAL" != "stm32" || make vendorheader