Disable apt caching in Travis CI configuration.

Apparently it isn't supposed to work reliably with the container-based
infrastructure that we're using and empirically it's causing build
failures.

Thanks to @mijime for tracking this down.
This commit is contained in:
Tim Abbott 2015-10-14 09:59:35 -04:00
parent f6311478e6
commit 6569018de7
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
install: install:
- pip install pbs - pip install pbs
- python provision.py --travis - python provision.py --travis
cache: apt cache:
- apt: false
language: python language: python
python: python:
- "2.7" - "2.7"