https://github.com/lmfit/lmfit-py
Raw File
Tip revision: 208871db96689c911e00b9d59dace2de68df3220 authored by Matt Newville on 26 October 2015, 22:24:37 UTC
Merge pull request #270 from lmfit/model_conf_interval
Tip revision: 208871d
.travis.yml
# Config file for automatic testing at travis-ci.org

language: python
sudo: false

python:
    - 2.7
    - 3.3
    - 3.4

before_install:
    - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
    - 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
    - conda info -a

install:
    - conda create -q -n test_env python=$TRAVIS_PYTHON_VERSION numpy scipy pandas matplotlib dateutil nose
    - source activate test_env
    - python setup.py install

script:
    - cd tests
    - nosetests
back to top