https://github.com/lmfit/lmfit-py
Revision 44313be2ae16b8e18fab9f99f491aabe158f3ae7 authored by Matt Newville on 18 September 2014, 04:39:28 UTC, committed by Matt Newville on 18 September 2014, 04:39:28 UTC
1 parent 5d7b3e3
Raw File
Tip revision: 44313be2ae16b8e18fab9f99f491aabe158f3ae7 authored by Matt Newville on 18 September 2014, 04:39:28 UTC
add example of using per-iteration callback
Tip revision: 44313be
.travis.yml
# Config file for automatic testing at travis-ci.org

language: python

python:
    - 2.7
    - 3.3

before_install:
    - wget http://repo.continuum.io/miniconda/Miniconda3-3.5.5-Linux-x86_64.sh -O miniconda.sh
    - chmod +x miniconda.sh
    - ./miniconda.sh -b
    - export PATH=/home/travis/miniconda3/bin:$PATH
    - conda config --add channels https://conda.binstar.org/dan_blanchard
    - conda update --yes conda

install:
    - conda install --yes pip python=$TRAVIS_PYTHON_VERSION numpy scipy pandas matplotlib dateutil nose
    - python setup.py install

script:
    - cd tests
    - nosetests
back to top