Skip to content

Commit

Permalink
Update .travis.yml to try miniconda
Browse files Browse the repository at this point in the history
  • Loading branch information
tejado authored Jul 26, 2016
1 parent 9c4dbbd commit bfa96ba
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ python:
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev

before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm

install: pip install -r requirements.txt
script:
- nosetests

0 comments on commit bfa96ba

Please sign in to comment.