https://github.com/lmfit/lmfit-py
Revision 54f8dac62336b24d1507f4f328a52327bcbe6e75 authored by Matt Newville on 02 August 2015, 13:37:38 UTC, committed by Matt Newville on 02 August 2015, 13:37:38 UTC
fix pseudo-voigt definition as per github issue #229
2 parent s 0a3a312 + 0e1f945
Raw File
Tip revision: 54f8dac62336b24d1507f4f328a52327bcbe6e75 authored by Matt Newville on 02 August 2015, 13:37:38 UTC
Merge pull request #244 from lmfit/pvoigt_def
Tip revision: 54f8dac
.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