Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
os: linux

dist: xenial

language: python

python:
Expand All @@ -20,6 +18,17 @@ env:
- INSTALL_EXTRAS=[plotting,fancy_progressbar]
- INSTALL_EXTRAS=[none]

# Cache pip packages
cache:
pip: true
timeout: 1000
directories:
- $HOME/miniconda

before_cache:
- rm -rf $HOME/miniconda/locks $HOME/miniconda/pkgs $HOME/miniconda/var
- rm -rf $HOME/miniconda/conda-bld $HOME/miniconda/conda-meda/history

before_install:
# Resolve INSTALL_EXTRAS into required packages for use with conda. HACKY
# Split by comma and replace by parameter designator ($)
Expand Down