https://github.com/pysal/pysal
Raw File
Tip revision: 51f6d3e57a2da282863ee23de1fa2e3f40c9c137 authored by Serge Rey on 28 June 2013, 02:42:03 UTC
- fixing
Tip revision: 51f6d3e
.travis.yml
language: python
python:
  - "2.7"
  #- "2.6"
  #
virtualenv:
  system_site_packages: true

before_install:
  - "sudo apt-get update -qq"
  - "sudo apt-get install -qq libgeos-3.2.2 libgeos-dev python-numpy python-scipy"

install:
  - "pip install -q -r requirements.txt --use-mirrors"
  - "pip install coveralls --use-mirrors"
  #- "pip install pysal --use-mirrors"
  #- "pip uninstall -y pysal"

script: 
  - python -c 'import numpy; print numpy.version.version'
  - python -c 'import scipy; print scipy.version.version'
  - python -c 'import pysal; print pysal.version'
  - nosetests 
  #- python setup.py sdist >/dev/null
  - cd doc; make pickle; make doctest
notifications:
    email:
        recipients:
            - sjsrey@gmail.com
            - phil.stphns@gmail.com
        on_success: always
        on_failure: always
back to top