https://github.com/pysal/pysal
Raw File
Tip revision: 83cbab46891b23c2799526850c607ce099119352 authored by Serge Rey on 07 July 2013, 20:32:44 UTC
- adding example data from geodanet
Tip revision: 83cbab4
.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