Revision 2bf0266d9b201cf477cbf20156d06bcc612bd9b4 authored by CJ Carey on 07 November 2015, 22:48:41 UTC, committed by CJ Carey on 07 November 2015, 22:48:41 UTC
1 parent eae4cd5
Raw File
.travis.yml
language: python
sudo: false
python:
  - "2.7"
  - "3.4"
install:
  - if [[ "$TRAVIS_PYTHON_VERSION" == 2.* ]]; then
      wget http://repo.continuum.io/miniconda/Miniconda-3.4.2-Linux-x86_64.sh -O miniconda.sh;
    else
      wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh;
    fi
  - bash miniconda.sh -b -p $HOME/miniconda
  - export PATH="$HOME/miniconda/bin:$PATH"
  - hash -r
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
  # Useful for debugging any issues with conda
  - conda info -a

  - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION scikit-learn
  - source activate test-environment
  - python setup.py install
script: python setup.py test
back to top