https://github.com/pysal/pysal
Raw File
Tip revision: 5fa9d09d4e3e1e9b65ebf9d574227f3705b155db authored by darribas on 30 July 2013, 15:45:33 UTC
silent_island_warning implemented for w_union
Tip revision: 5fa9d09
.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
        on_success: always
        on_failure: always
back to top