https://github.com/lmfit/lmfit-py
Revision 6f357640bdcb9a183da39b02d58dae44df7737fd authored by Matt Newville on 02 August 2015, 13:42:13 UTC, committed by Matt Newville on 02 August 2015, 13:42:13 UTC
1 parent d469da4
Raw File
Tip revision: 6f357640bdcb9a183da39b02d58dae44df7737fd authored by Matt Newville on 02 August 2015, 13:42:13 UTC
bugfix -- only abort when iter_cb returns a True value
Tip revision: 6f35764
.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