https://github.com/lmfit/lmfit-py
Raw File
Tip revision: 5ca32e744596c2c4c54e6d5ea2aab7bf35858f4c authored by Matt Newville on 13 November 2013, 14:45:19 UTC
version 0.7.3
Tip revision: 5ca32e7
.travis.yml
# Config file for automatic testing at travis-ci.org

language: python

env:
    - PYTHON=python PYSUF='' # uses Python 2.7
    - PYTHON=python3 PYSUF=3 # uses Python 3.2

# command to install dependencies
install:
  # Deactivate the virtualenv to get fast install of dependencies
  - deactivate
  - time sudo apt-get install -qq $PYTHON-numpy $PYTHON-scipy $PYTHON-matplotlib $PYTHON-sphinx $PYTHON-nose $PYTHON-ipython
  - time sudo pip -q install --use-mirrors uncertainties asteval
  - sudo python$PYSUF setup.py install
script:
  # Execute the unit tests
  # For now running nosetests doesn't work.
  - cd tests
  - $PYTHON test_covar.py
  # Generate the docs
  - cd ../doc
  - make html
back to top