electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit ce22d2b4ca0a7feacebae108082afb789b99ea31
parent 57e0ca5a47bef7816b8ffb879954a21acaa9901d
Author: ThomasV <thomasv@electrum.org>
Date:   Mon,  8 Jan 2018 09:47:37 +0100

Merge pull request #3665 from joren485/travis_cache

Cache pip installs in travis
Diffstat:
M.travis.yml | 10+++++-----
Arequirements_travis.txt | 3+++
2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml @@ -1,12 +1,12 @@ sudo: false language: python python: - - "3.5" - - "3.6" + - 3.5 + - 3.6 install: - - pip install tox - - pip install tox-travis - - pip install python-coveralls + - pip install -r requirements_travis.txt +cache: + - pip script: - tox after_success: diff --git a/requirements_travis.txt b/requirements_travis.txt @@ -0,0 +1,3 @@ +tox +python-coveralls +tox-travis