From e39d5025d57a08ce82bec189969cf22ee81134e1 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Fri, 28 Oct 2016 21:51:45 +0300 Subject: [PATCH] travis: use pip to install trezor-agent --- .travis.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index fa3739c..f58c4a3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,12 +2,22 @@ sudo: false language: python python: - "2.7" - - "3.4" - - "3.5" + +cache: + directories: + - $HOME/.cache/pip + +addons: + apt: + packages: + - libudev-dev + - libusb-1.0-0-dev + +before_install: + - pip install -U setuptools pylint coverage pep8 pydocstyle "pip>=7.0" wheel install: - - pip install ecdsa ed25519 semver # test without trezorlib for now - - pip install -U pylint coverage pep8 pydocstyle # use latest tools + - pip install -e . script: - pep8 trezor_agent