URI: 
       tMerge pull request #3665 from joren485/travis_cache - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit ce22d2b4ca0a7feacebae108082afb789b99ea31
   DIR parent 57e0ca5a47bef7816b8ffb879954a21acaa9901d
  HTML 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 +++++-----
         A requirements_travis.txt             |       3 +++
       
       2 files changed, 8 insertions(+), 5 deletions(-)
       ---
   DIR diff --git a/.travis.yml b/.travis.yml
       t@@ -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:
   DIR diff --git a/requirements_travis.txt b/requirements_travis.txt
       t@@ -0,0 +1,3 @@
       +tox
       +python-coveralls
       +tox-travis