Skip to content

Commit

Permalink
Fix miniconda install path
Browse files Browse the repository at this point in the history
  • Loading branch information
mwcraig committed Mar 14, 2016
1 parent 10b44be commit fc79d26
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ env:
- ASTROPY_VERSION=stable
- CONDA_INSTALL='conda install -c astropy-ci-extras --yes'
- PIP_INSTALL='pip install'
- MINICONDA_HOME='/home/travis/miniconda'

matrix:
include:
Expand All @@ -20,8 +21,8 @@ before_install:
- export PYTHONIOENCODING=UTF8
- 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
- ./miniconda.sh -b -p $MINICONDA_HOME
- export PATH=$MINICONDA_HOME/bin:$PATH
- conda update --yes conda

# DOCUMENTATION DEPENDENCIES
Expand Down

0 comments on commit fc79d26

Please sign in to comment.