https://github.com/lmfit/lmfit-py
Raw File
Tip revision: b2ea0f39ecce39738410a9cc7b3ad7f3e6d73284 authored by Matt Newville on 21 July 2016, 17:34:26 UTC
Merge pull request #353 from lmfit/prep094rc2
Tip revision: b2ea0f3
.travis.yml
# Config file for automatic testing at travis-ci.org

language: python
sudo: false

python:
    - 2.6
    - 2.7
    - 3.3
    - 3.4
    - 3.5

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 nose
    - source activate test_env
    - pip install emcee
    - python setup.py install

script:
    - cd tests
    - nosetests
back to top