1
0
Fork 0

Add pip cache and cointaner mode to travis

Pip caching is described in http://docs.travis-ci.com/user/caching/ . We willn't need redownload dependencies every time. It will work faster.

Container-based infrastructure is described in http://docs.travis-ci.com/user/migrating-from-legacy/?utm_source=legacy-notice&utm_medium=banner&utm_campaign=legacy-upgrade . We can freely migrate to container-based infrastructure. It will work faster too.
This commit is contained in:
Adam Dobrawy 2015-08-14 16:44:26 +02:00
parent 4b49b0b045
commit d05b255cc2

View file

@ -1,4 +1,6 @@
language: python
sudo: false
cache: pip
python:
- '2.6'
- '2.7'