https://github.com/lmfit/lmfit-py
Raw File
Tip revision: 8a4eb4f5675628bc8ee2d0da70b9e9397f80c280 authored by Matthew Newville on 27 March 2016, 21:45:44 UTC
more doc tweaks
Tip revision: 8a4eb4f
.travis.yml
# Config file for automatic testing at travis-ci.org

language: python
sudo: false

python:
    - 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