https://github.com/gboeing/osmnx
Raw File
Tip revision: d69ff53e5aa909362b904f4eb6b4413cf9cee097 authored by gboeing on 25 April 2017, 06:03:38 UTC
update changelog
Tip revision: d69ff53
.travis.yml
language: python

python:
  - "2.7"
  - "3.5"
  - "3.6"

before_install:
  - pip install --upgrade pip
  - pip install --upgrade wheel
  - wget http://bit.ly/miniconda -O miniconda.sh
  - bash miniconda.sh -b -p $HOME/miniconda
  - export PATH="$HOME/miniconda/bin:$PATH"
  - hash -r
  - conda config --set always_yes yes
  - conda config --add channels conda-forge
  - conda update --all
  - conda info -a
  
install:
  - conda create -n TESTENV python=$TRAVIS_PYTHON_VERSION pytest coverage coveralls requests numpy matplotlib pandas networkx Shapely Rtree descartes geopandas folium
  - source activate TESTENV
  - pip install .
  - pip show osmnx

script:
  - coverage run --source osmnx -m pytest --verbose

after_success:
  - coverage report -m
  - coveralls
back to top