Browse Source
Merge pull request #3665 from joren485/travis_cache
Cache pip installs in travis
3.1
ThomasV
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
8 additions and
5 deletions
-
.travis.yml
-
requirements_travis.txt
|
|
@ -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: |
|
|
|
|
|
@ -0,0 +1,3 @@ |
|
|
|
tox |
|
|
|
python-coveralls |
|
|
|
tox-travis |