https://github.com/pysal/pysal
Raw File
Tip revision: 2a9218feb81880dd8e00100f4619fd4316f28c36 authored by Levi John Wolf on 18 July 2018, 19:04:02 UTC
Merge pull request #1051 from ljwolf/master
Tip revision: 2a9218f
.travis.yml
language: python
sudo: false
branches:
only:
  - master
python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"

env:
  - PYSAL_PLUS=false
  - PYSAL_PLUS=true

before_install:
  - wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
  - chmod +x miniconda.sh
  - ./miniconda.sh -b -p ./miniconda
  - export PATH=`pwd`/miniconda/bin:$PATH
  - conda update --yes conda
  - conda config --add channels conda-forge
  - conda create -y -q -n test-env python=$TRAVIS_PYTHON_VERSION
  - source activate test-env
  - if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then 2to3 -nw pysal/ > /dev/null; fi

install:
  - conda install --yes pip
  - if [ "$PYSAL_PLUS" == true ]; then
        echo 'plus testing'; conda install --yes --file requirements_plus.txt;
        else conda install --yes --file requirements.txt;
    fi;
  - pip install -r requirements_dev.txt

script:
  - python setup.py sdist >/dev/null
  - echo "check_stable=False" >pysal/config.py
  - nosetests --verbose --with-coverage --cover-package=pysal;
  #- cd doc; make pickle; make doctest
notifications:
    email:
        recipients:
            - sjsrey@gmail.com
            - levi.john.wolf@gmail.com
            - dfolch@gmail.com
            - daniel.arribas.bel@gmail.com
            - weikang9009@gmail.com
            - carsonfarmer@gmail.com
            - tayoshan@gmail.com
            - marynia.kolak@gmail.com
            - jgaboardi@gmail.com
            - phil.stphns@gmail.com
        on_success: always
        on_failure: always

after_success:
  - coveralls
back to top